#deprecated #fern #accompany #version #independent #logging #macro

deprecated fern_macros

Deprecated crate which used to accompany the fern (fern has been independent since version 0.2)

1 unstable release

Uses old Rust 2015

0.1.8 Sep 4, 2017
0.1.7 Mar 9, 2015
0.1.6 Feb 21, 2015
0.1.3 Jan 10, 2015
0.1.1 Dec 28, 2014

#3 in #accompany

MIT license

5KB
61 lines

fern_macros (deprecated)

Deprecated crate which used to accompany the fern.

Before version 0.2, fern used to act as an independent logging library - and thus included its own logging macros.

This crate is used to accompany fern version 0.1, and is heavily deprecated. The original code remains for backwards compatibility reasons, but upgrading fern to version 0.2+ will be a great improvement.


lib.rs:

Deprecated crate which used to accompany the fern.

Before version 0.2, fern used to act as an independent logging library - and thus included its own logging macros.

This crate is used to accompany fern version 0.1, and is heavily deprecated. The original code remains for b backwards compatibility reasons, but upgrading fern to version 0.2+ will be a great improvement.

If you really do want to use fern_macros... here's the original documentation:

Logging macros for the fern library. The macros in the package use the stored thread-local logger. You can log using the log!() macro to specify a level, or the debug!(), info!(), warning!() and severe!() macros for each specific level.

Note that in order for logging_macros to function correctly, you need to be using the fern crate under the name fern, as shown below:

extern crate fern;
#[macro_use]
extern crate fern_macros;

Dependencies

~305KB