Remove Send and Sync from core crate
[rust-lightning] / lightning / src / util / logger.rs
index acd6d323e8f319e9b3c84550ab099d2258f486cb..2cf0f13633661a5ae6eed6ed180ddc3978fdaa26 100644 (file)
@@ -117,7 +117,7 @@ impl<'a> Record<'a> {
 }
 
 /// A trait encapsulating the operations required of a logger
-pub trait Logger: Sync + Send {
+pub trait Logger {
        /// Logs the `Record`
        fn log(&self, record: &Record);
 }