@@ -19,7 +19,7 @@ and you use the ```log``` macros to write log lines from your code):
19
19
20
20
``` toml
21
21
[dependencies ]
22
- flexi_logger = " 0.30 "
22
+ flexi_logger = " 0.31 "
23
23
log = " 0.4"
24
24
```
25
25
@@ -75,23 +75,23 @@ Make use of the non-default features by specifying them in your `Cargo.toml`, e.
75
75
76
76
``` toml
77
77
[dependencies ]
78
- flexi_logger = { version = " 0.30 " , features = [" async" , " specfile" , " compress" ] }
78
+ flexi_logger = { version = " 0.31 " , features = [" async" , " specfile" , " compress" ] }
79
79
log = " 0.4"
80
80
```
81
81
82
82
or, to get the smallest footprint (and no colors), switch off even the default features:
83
83
84
84
``` toml
85
85
[dependencies ]
86
- flexi_logger = { version = " 0.30 " , default_features = false }
86
+ flexi_logger = { version = " 0.31 " , default_features = false }
87
87
log = " 0.4"
88
88
```
89
89
90
90
### ** ` async ` **
91
91
92
92
Adds an additional write mode that decouples ` flexi_logger ` 's I/O from your application threads.
93
93
Works with ` log_to_stdout() ` , ` log_to_stderr() ` , and ` log_to_file() ` .
94
- See [ here ] ( ./docs/diagrams.pdf ) for a performance comparison of some write modes.
94
+ See [ performance comparison ] ( ./docs/diagrams.pdf ) of some write modes.
95
95
96
96
Adds dependencies to
97
97
[ ` crossbeam-channel ` ] ( https://docs.rs/crossbeam-channel/latest/crossbeam_channel/ )
@@ -130,7 +130,7 @@ or all rotated log files in compressed form (`.gz`) rather than as plain text fi
130
130
Normally, ` flexi_logger ` reduces the stack size of all threads that it might spawn
131
131
(flusher, specfile-watcher, async writer, cleanup) to a bare minimum.
132
132
For usecases where this is not desirable
133
- (see [ here] ( https://github.com/emabee/flexi_logger/issues/95 ) for some motivation ),
133
+ ([ here is some motivation ] ( https://github.com/emabee/flexi_logger/issues/95 ) ),
134
134
you can activate this feature.
135
135
136
136
### ** ` json ` **
@@ -171,7 +171,7 @@ For that reason the feature is not active by default.
171
171
### ** ` specfile_without_notification ` **
172
172
173
173
Pretty much like ` specfile ` , except that updates to the file are being ignored.
174
- See [ here ] ( https://github.com/emabee/flexi_logger/issues/59 ) for more details.
174
+ See [ issue 59 ] ( https://github.com/emabee/flexi_logger/issues/59 ) for more details.
175
175
176
176
### ** ` syslog_writer ` **
177
177
0 commit comments