Logging.jl icon indicating copy to clipboard operation
Logging.jl copied to clipboard

Logging package for julia

Results 21 Logging.jl issues
Sort by recently updated
recently updated
newest added

When trying to use the logging macros: ```julia julia> using Logging julia> @Logging.configure(level=INFO) ERROR: MethodError: no method matching override_info(::Logging.LogLevel) Closest candidates are: override_info(; args...) at /home/vharisop/.julia/v0.6/Logging/src/Logging.jl:143 ``` ```bash [vharisop@alwaysbored] julia...

I get some error locally. ``` WARNING: Method definition warn(Any...) in module Base at util.jl:585 overwritten in module Logging at /usr/people/jingpeng/.julia/v0.6/Logging/src/Logging.jl:115. WARNING: Method definition info(Any...) in module Base at util.jl:532...

Hello, I wrote a tiny package named [Pushover.jl](https://github.com/scls19fr/Pushover.jl). It's using the [Pushover Notification Service](https://pushover.net/) API ([documented here](https://pushover.net/api)) to send short message to [Android, Iphone, desktop...](https://github.com/scls19fr/Pushover.jl/issues/1) I'm looking for a way...

- Two of the logging functions (`info` and `warn`) conflict with functions in base, and `error` was originally named `err` for the same reason. Unexporting them removes these conflicts. -...

Add pid in the Logging message is an easy way to identify which thread belongs in an multithreaded execution.

I would like to use Logging in a package, but `import Logging` overwrites Base.info and Base.warn, which I don't want to enforce on users. Could this be reconsidered?

Use the package format to set the number of decimal places to float numbers on the log.

I would like to specify the output date format as `%Y-%m-%dT%H:%M:%S` but without using Syslog. Can this be made configurable? Thanks

Hi there, I am running the tests for [LoggedDicts.jl](https://github.com/JockLawrie/LoggedDicts.jl), which uses Logging.jl as a dependency. On my local machine everything works well, but on Travis I consistently get the error:...