From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001 From: Date: Mon, 29 Jun 2015 20:16:15 +0000 Subject: Update documentation --- log/macro.error!.html | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 log/macro.error!.html (limited to 'log/macro.error!.html') diff --git a/log/macro.error!.html b/log/macro.error!.html new file mode 100644 index 0000000..3be732d --- /dev/null +++ b/log/macro.error!.html @@ -0,0 +1,115 @@ + + + + + + + + + + log::error! - Rust + + + + + + + + + + + + + + + +
+

log::error! + + [] + + [src]

+
+macro_rules! error {
+    (target: $target:expr, $($arg:tt)*) => (
+        log!(target: $target, $crate::LogLevel::Error, $($arg)*);
+    );
+    ($($arg:tt)*) => (
+        log!($crate::LogLevel::Error, $($arg)*);
+    )
+}
+
+

Logs a message at the error level.

+ +

Logging at this level is disabled if the log_level = "off" cfg is +present.

+
+ + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3