From acfb4954116aa14e015cf5676b4d2e2f302f232e Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Tue, 14 Dec 2021 10:31:48 +0100 Subject: [PATCH] Do not print logo, if not requested --- fairmq/DeviceRunner.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fairmq/DeviceRunner.cxx b/fairmq/DeviceRunner.cxx index 2b2594c0..c9173cc5 100644 --- a/fairmq/DeviceRunner.cxx +++ b/fairmq/DeviceRunner.cxx @@ -128,7 +128,7 @@ auto DeviceRunner::Run() -> int fConfig.ParseAll(fRawCmdLineArgs, true); - if (!HandleGeneralOptions(fConfig)) { + if (!HandleGeneralOptions(fConfig, fPrintLogo)) { return 0; }