1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
//! Here are some examples for the `flexi_logger` initialization.
//!
//! ## Contents
//!
//! - [Write logs to stderr](#write-logs-to-stderr)
//! - [Choose the log output channel](#choose-the-log-output-channel)
//! - [Use buffering to reduce I/O overhead](#use-buffering-to-reduce-io-overhead)
//! - [Influence the location and name of the log file](#influence-the-location-and-name-of-the-log-file)
//! - [Specify the format for the log lines explicitly](#specify-the-format-for-the-log-lines-explicitly)
//! - [Use a fixed log file, and truncate or append the file on each program start](#use-a-fixed-log-file-and-truncate-or-append-the-file-on-each-program-start)
//! - [Rotate the log file](#rotate-the-log-file)
//! - [Reconfigure the log specification programmatically](#reconfigure-the-log-specification-programmatically)
//! - [Reconfigure the log specification dynamically by editing a spec-file](#reconfigure-the-log-specification-dynamically-by-editing-a-spec-file)
//!
//!
//! ## Write logs to stderr
//!
//! Expect the log specification in the environment variable `RUST_LOG`:
//!
//! ` Logger::`[`with_env()`](crate::Logger::with_env)`.start()?;`
//!
//! (if `RUST_LOG` is not set, or if its value cannot be interpreted, nothing is logged)
//!
//! or provide the log spec programmatically:
//!
//! ` Logger::`[`with_str("info")`](crate::Logger::with_str)`.start()?;`
//!
//! or combine both options:
//!
//! ` Logger::`[`with_env_or_str("info")`](crate::Logger::with_env_or_str)`.start()?;`
//!
//! After that, you just use the log-macros from the log crate.
//!
//! ## Choose the log output channel
//!
//! By default, logs are written to `stderr`.
//! With [`Logger::log_target`](crate::Logger::log_target)
//! you can send the logs to `stdout`, a file, an implementation of `LogWriter`,
//! or write them not at all.
//!
//! When writing to files, you sometimes want to have parts of the log still on the terminal;
//! this can be achieved with
//! [`Logger::duplicate_to_stderr`](crate::Logger::duplicate_to_stderr) or
//! [`Logger::duplicate_to_stdout`](crate::Logger::duplicate_to_stdout),
//! which duplicate log messages to the terminal.
//!
//! ```rust
//! # use flexi_logger::{LogTarget,Logger,Duplicate};
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! Logger::with_str("info")
//!    .log_target(LogTarget::File)              // write logs to file
//!    .duplicate_to_stderr(Duplicate::Warn)     // print warnings and errors also to the console
//!    .start()?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Use buffering to reduce I/O overhead
//!
//! By default, every log line is directly written to the output, without buffering.
//! This allows seeing new log lines in real time.
//!
//! Using buffering reduces the program's I/O overhead, and thus increases overall performance,
//! which can be important if logging is used heavily.
//!
//! **Note** that with buffering you should keep the [`LoggerHandle`](crate::LoggerHandle) and call
//! [`shutdown`](crate::LoggerHandle::shutdown) at the very end of your program
//! to ensure that all buffered log lines are flushed before the program terminates.
//!
//! ```rust
//! # use flexi_logger::{LogTarget,Logger,Duplicate};
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     let logger = Logger::with_str("info")
//!        .log_target(LogTarget::File)
//!        .use_buffering(true)
//!        .start()?;
//!     // ... do all your work ...
//!     logger.shutdown();
//!     Ok(())
//! }
//! ```
//!
//! If logging is used with low frequency, buffering can delay the appearance of log lines
//! significantly. To avoid that, you can get the buffers flushed automatically in regular
//! intervals.
//!
//! ```rust
//! # use flexi_logger::{LogTarget,Logger,Duplicate};
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     let logger = Logger::with_str("info")
//!        .log_target(LogTarget::File)
//!        .buffer_and_flush()
//!        .start()?;
//!     // ... do all your work ...
//!     logger.shutdown();
//!     Ok(())
//! }
//! ```
//!
//! ## Influence the location and name of the log file
//!
//! By default, the log files are created in the current directory (where the program was started).
//! With [`Logger:directory`](crate::Logger::directory)
//! you can specify a concrete folder in which the files should be created.
//!
//! Using [`Logger::discriminant`](crate::Logger::discriminant)
//! you can add a discriminating infix to the log file name.
//!
//! With [`Logger::suffix`](crate::Logger::suffix)
//! you can change the suffix that is used for the log files.
//!
//! When writing to files, especially when they are in a distant folder, you may want to let the
//! user know where the log file is.
//!
//! [`Logger::print_message`](crate::Logger::print_message)
//! prints an info to `stdout` to which file the log is written.
//!
//! `create_symlink(path)` creates (on unix-systems only) a symbolic link at the
//! specified path that points to the log file.
//!
//! ```rust
//! # use flexi_logger::Logger;
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! Logger::with_str("info")
//!    .log_to_file()                            // write logs to file
//!    .directory("traces")                      // create files in folder ./traces
//!    .discriminant("Sample4711A")              // use infix in log file name
//!    .suffix("trc")                            // use suffix .trc instead of .log
//!    .print_message()                          //
//!    .create_symlink("current_run")            // create a symbolic link to the current log file
//!    .start()?;
//! # Ok(())
//! # }
//! ```
//!
//! This example will print a message
//! "Log is written to `./traces/foo_Sample4711A_2020-11-17_19-24-35.trc`"
//! and, on unix, create a symbolic link called `current_run`.
//!
//! ## Specify the format for the log lines explicitly
//!
//! With [`Logger::format`](crate::Logger::format)
//! you set the format for all used output channels of `flexi_logger`.
//!
//! `flexi_logger` provides a couple of format functions, and you can also create and use your own,
//! e.g. by copying and modifying one of the provided format functions.
//!
//! Depending on the configuration, `flexi_logger` can write logs to multiple channels
//! (stdout, stderr, files, or additional writers)
//! at the same time. You can control the format for each output channel individually, using
//! [`Logger::format_for_files`](crate::Logger::format_for_files),
//! [`Logger::format_for_stderr`](crate::Logger::format_for_stderr),
//! [`Logger::format_for_stdout`](crate::Logger::format_for_stdout), or
//! [`Logger::format_for_writer`](crate::Logger::format_for_writer).
//!
//!  As argument for these functions you can use one of the provided non-coloring format functions
//!
//!  - [`default_format`](crate::default_format)
//!  - [`detailed_format`](crate::detailed_format)
//!  - [`opt_format`](crate::opt_format)
//!  - [`with_thread`](crate::with_thread),
//!
//! or one of their coloring pendants
//!
//!  - [`colored_default_format`](crate::colored_default_format)
//!  - [`colored_detailed_format`](crate::colored_detailed_format)
//!  - [`colored_opt_format`](crate::colored_opt_format).
//!  - [`colored_with_thread`](crate::colored_with_thread).
//!
//! ### Adaptive Coloring
//!
//! You can use coloring for `stdout` and/or `stderr`
//! conditionally, such that colors are used when the output goes to a tty,
//! and suppressed if you e.g. pipe the output to some other program.
//! With
//! [`Logger::adaptive_format_for_stderr`](crate::Logger::adaptive_format_for_stderr) or
//! [`Logger::adaptive_format_for_stdout`](crate::Logger::adaptive_format_for_stdout)
//! you can specify one of the provided format pairs
//! (which are based on the format functions listed above),
//! or you can provide your own colored and non-colored format functions.
//!
//! ### Defaults
//!
//! `flexi_logger` initializes by default equivalently to this:
//!
//! ```rust,ignore
//! # use flexi_logger::{Logger,AdaptiveFormat,default_format};
//! # use log::{debug, error, info, trace, warn};
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # Logger::with_str("info")      // Write all error, warn, and info messages
//! #   .directory(std::env::temp_dir())
//!     .adaptive_format_for_stderr(AdaptiveFormat::Default)
//!     .adaptive_format_for_stdout(AdaptiveFormat::Default)
//!     .format_for_files(default_format)
//!     .format_for_writer(default_format)
//! #    .start()?;
//! # error!("This is an error message");
//! # warn!("This is a warning");
//! # info!("This is an info message");
//! # debug!("This is a debug message - you must not see it!");
//! # trace!("This is a trace message - you must not see it!");
//! #  run()
//! # }
//! # fn run() -> Result<(), Box<dyn std::error::Error>> {Ok(())}
//! ```
//!
//! ## Use a fixed log file, and truncate or append the file on each program start
//!
//! With [`Logger::log_to_file`](crate::Logger::log_to_file) and without rotation,
//! `flexi_logger` uses by default files with a timestamp in the name, like
//! `foo_2020-11-16_08-37-44.log` (for a program called `foo`), which are quite unique for each
//! program start.
//!
//! With [`Logger::suppress_timestamp`](crate::Logger::suppress_timestamp)
//! you get a simple fixed filename, like `foo.log`.
//!
//! In that case, a restart of the program will truncate an existing log file.
//!
//! Use additionally [`Logger::append`](crate::Logger::append)
//! to append the logs of each new run to the existing file.
//!
//! ```rust
//! # use flexi_logger::Logger;
//! # use log::{debug, error, info, trace, warn};
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! Logger::with_str("info")      // Write all error, warn, and info messages
//! #   .directory(std::env::temp_dir())
//!     .log_to_file()            // Write the log to a file
//!     .suppress_timestamp()     // use a simple filename without a timestamp
//!     .append()                 // do not truncate the log file when the program is restarted
//!     .start()?;
//!
//! # error!("This is an error message");
//! # warn!("This is a warning");
//! # info!("This is an info message");
//! # debug!("This is a debug message - you must not see it!");
//! # trace!("This is a trace message - you must not see it!");
//! #  run()
//! # }
//! # fn run() -> Result<(), Box<dyn std::error::Error>> {Ok(())}
//! ```
//!
//! ## Rotate the log file
//!
//! With rotation, the logs are always written to a file
//! with the infix `rCURRENT`, like e.g. `foo_rCURRENT.log`.
//!
//! [`Logger::rotate`](crate::Logger::rotate)
//! takes three enum arguments to define its behavior:
//!
//! - [`Criterion`](crate::Criterion)
//!    - with `Criterion::Age` the rotation happens
//!      when the clock switches to a new day, hour, minute, or second
//!    - with `Criterion::Size` the rotation happens when the current log file exceeds
//!      the specified limit
//!    - with `Criterion::AgeOrSize` the rotation happens when either of the two limits is reached
//!
//! - [`Naming`](crate::Naming)<br>The current file is then renamed
//!   - with `Naming::Timestamps` to something like `foo_r2020-11-16_08-56-52.log`
//!   - with `Naming::Numbers` to something like `foo_r00000.log`
//!
//!   and a fresh `rCURRENT` file is created.
//!
//! - [`Cleanup`](crate::Cleanup) defines if and how you
//!   avoid accumulating log files indefinitely:
//!   - with `Cleanup::KeepLogFiles` you specify the number of log files that should be retained;
//!     if there are more, the older ones are getting deleted
//!   - with `Cleanup::KeepCompressedFiles` you specify the number of log files that should be
//!     retained, and these are being compressed additionally
//!   - with `Cleanup::KeepLogAndCompressedFiles` you specify the number of log files that should be
//!     retained as is, and an additional number that are being compressed
//!   - with `Cleanup::Never` no cleanup is done, all files are retained.
//!
//! ```rust
//! # use flexi_logger::{Age, Cleanup, Criterion, Logger, Naming};
//! # use log::{debug, error, info, trace, warn};
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! Logger::with_str("info")          // Write all error, warn, and info messages
//! #   .directory(std::env::temp_dir())
//!     .log_to_file()                // Write the log to a file
//!     .rotate(                      // If the program runs long enough,
//!         Criterion::Age(Age::Day), // - create a new file every day
//!         Naming::Timestamps,       // - let the rotated files have a timestamp in their name
//!         Cleanup::KeepLogFiles(7), // - keep at most 7 log files
//!     )
//!     .start()?;
//!
//! #   error!("This is an error message");
//! #   warn!("This is a warning");
//! #   info!("This is an info message");
//! #   debug!("This is a debug message - you must not see it!");
//! #   trace!("This is a trace message - you must not see it!");
//! #    run()
//! # }
//! # fn run() -> Result<(), Box<dyn std::error::Error>> {Ok(())}
//! ```
//!
//! ## Reconfigure the log specification programmatically
//!
//! This can be especially handy in debugging situations where you want to see
//! traces only for a short instant.
//!
//! Obtain the `LoggerHandle`
//!
//! ```rust
//! # use flexi_logger::Logger;
//! let mut logger = Logger::with_str("info")
//!     // ... logger configuration ...
//!     .start()
//!     .unwrap();
//! ```
//!
//! and modify the effective log specification from within your code:
//!
//! ```rust, ignore
//! // ...
//! logger.parse_and_push_temp_spec("info, critical_mod = trace");
//! // ... critical calls ...
//! logger.pop_temp_spec();
//! // ... continue with the log spec you had before.
//! ```
//!
//! ## Reconfigure the log specification dynamically by editing a spec-file
//!
//! If you start `flexi_logger` with a specfile,
//!
//! ```rust,ignore
//! # use flexi_logger::Logger;
//! Logger::with_str("info")
//!     // ... logger configuration ...
//!    .start_with_specfile("/server/config/logspec.toml")
//!    .unwrap();
//! ```
//!
//! then you can change the log specification dynamically, *while your program is running*,
//! by editing the specfile. This can be a great help e.g. if you want to get detailed traces
//! for _some_ requests to a long running server.
//!
//! See [`Logger::start_with_specfile`](crate::Logger::start_with_specfile)
//! for more information.
//!
//! ## Miscellaneous
//!
//! For the sake of completeness, we refer here to some more configuration methods.
//! See their documentation for more details.
//!
//! [`Logger::check_parser_error`](crate::Logger::check_parser_error)
//!
//! [`Logger::set_palette`](crate::Logger::set_palette)
//!
//! [`Logger::cleanup_in_background_thread`](crate::Logger::cleanup_in_background_thread)
//!
//! [`Logger::use_windows_line_ending`](crate::Logger::use_windows_line_ending)
//!
//! [`Logger::add_writer`](crate::Logger::add_writer)