Tomas Dvorak
Tomas Dvorak
What is the proper way to use FnValue? If I understand it's purpose, it's the right way to avoid potentially expensive serialization when a logging statement doesn't actually log, a...
I'm removing duplicate dependencies from my project, and remove_dir_all 0.5 (tempfile) vs 0.6 (others) is one of them
I'm using textplots as a lightweight lib only. Would it be possible to either split it into two crates, or use features, to have a `structopt` and `meval` dependencies free...
Hi, nmea 0.0.7 chokes with Stack Overflow on this data dumped from the GPS integrated into the Algiz tablet: ```nmea $GNVTG,,,,,,,,,N*2E $GNGNS,181604.00,,,,,NN,00,99.99,,,,*59 $GNGGA,181604.00,,,,,0,00,99.99,,,,,,*72 $GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E $GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E $GPGSV,4,1,13,02,35,291,,03,09,129,,05,14,305,,06,38,226,*7D $GPGSV,4,2,13,07,56,177,,09,70,067,,16,20,055,,23,41,076,*77 $GPGSV,4,3,13,26,10,030,,29,05,341,,30,26,199,,36,30,158,*7E $GPGSV,4,4,13,49,32,192,*4D $GLGSV,3,1,10,66,45,091,,67,67,334,,68,17,297,,75,13,025,*68...
Now: ``` 2 * pi() ``` Desired: ``` 2 * pi ``` Is there any reason for the first? Would it make sense/be easy to implement the second? The second...
`ToString` would be great, I use `fn foo(s: impl ToString) ...` a lot for caller ergonomics
Add support to have different logging levels based on [slog_kvfilter](https://docs.rs/slog-kvfilter/0.4.0/slog_kvfilter/) for both `terminal_logger` and `file_logger`. The configuration could look e.g. something like ```toml type = "terminal" # terminal or file...
This is first in a series of feature requests I'd appreciate to have in sloggers. I can eventually implement them myself when I feel a pressing need (that will probably...
I'd like sloggers to be able to configure and instantiate a logger that logs both to `terminal_logger` and `file_logger`. An example of expected configuration file: ```toml [terminal_logger] format = "compact"...
Updated dependencies to newest version. The code compiles without any changes.