From 226733c65384b97954cbaa770732ea7ccfcfb01d Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Wed, 22 Jun 2022 14:04:43 +0200 Subject: [PATCH] Reduce severity of the missing channel cfg on command line It is a valid use case to create the config programmatically at a later stage. --- fairmq/plugins/config/Config.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fairmq/plugins/config/Config.cxx b/fairmq/plugins/config/Config.cxx index 0be70730..0a438010 100644 --- a/fairmq/plugins/config/Config.cxx +++ b/fairmq/plugins/config/Config.cxx @@ -40,7 +40,7 @@ Config::Config(const string& name, Plugin::Version version, const string& mainta LOG(debug) << "channel-config: Parsing channel configuration"; SetProperties(SuboptParser(GetProperty>("channel-config"), idForParser)); } else { - LOG(warn) << "fair::mq::plugins::Config: no channels configuration provided via --mq-config or --channel-config"; + LOG(info) << "fair::mq::plugins::Config: no channels configuration provided via --mq-config or --channel-config"; } } catch (exception& e) { LOG(error) << e.what();