summaryrefslogtreecommitdiffstats
path: root/third_party/rust/aho-corasick/src/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/aho-corasick/src/macros.rs')
-rw-r--r--third_party/rust/aho-corasick/src/macros.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/rust/aho-corasick/src/macros.rs b/third_party/rust/aho-corasick/src/macros.rs
new file mode 100644
index 0000000000..fc73e6eddd
--- /dev/null
+++ b/third_party/rust/aho-corasick/src/macros.rs
@@ -0,0 +1,18 @@
+#![allow(unused_macros)]
+
+macro_rules! log {
+ ($($tt:tt)*) => {
+ #[cfg(feature = "logging")]
+ {
+ $($tt)*
+ }
+ }
+}
+
+macro_rules! debug {
+ ($($tt:tt)*) => { log!(log::debug!($($tt)*)) }
+}
+
+macro_rules! trace {
+ ($($tt:tt)*) => { log!(log::trace!($($tt)*)) }
+}