diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ impl Log { /// Return an analyzer suitable to analyze the given log. pub fn analyzer<'s>(&'s self) -> Option<Box<dyn Analyzer + 's>> { - analyzers::for_log(&self) + analyzers::for_log(self) } /// Return all events present in this log. |