summaryrefslogtreecommitdiffstats
path: root/lib/core/libimagrt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core/libimagrt')
-rw-r--r--lib/core/libimagrt/src/logger.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/core/libimagrt/src/logger.rs b/lib/core/libimagrt/src/logger.rs
index e9526a35..fa6c8c28 100644
--- a/lib/core/libimagrt/src/logger.rs
+++ b/lib/core/libimagrt/src/logger.rs
@@ -98,7 +98,7 @@ impl ImagLogger {
Ok(ImagLogger {
global_loglevel : aggregate_global_loglevel(matches, config)?,
- global_destinations : aggregate_global_destinations(matches, config)?,
+ global_destinations : aggregate_global_destinations(config)?,
module_settings : aggregate_module_settings(matches, config)?,
handlebars : handlebars,
})
@@ -273,7 +273,7 @@ fn translate_destinations(raw: &Vec<Value>) -> Result<Vec<LogDestination>> {
.collect()
}
-fn aggregate_global_destinations(matches: &ArgMatches, config: Option<&Value>)
+fn aggregate_global_destinations(config: Option<&Value>)
-> Result<Vec<LogDestination>>
{
match config {