From 1a4313c73c052f65410f1c7e1f415ce57c5143be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Thu, 1 Sep 2022 16:50:06 +0200 Subject: [PATCH] Direct All Non-Triggered Action Messages to Debug File End users typically do not care that a particular action did NOT trigger at a particular time and these messages will typically reduce the utility of the CASE.PRT file. On important field cases we've seen more than 100,000 such messages in a single run which is quite overwhelming. Since we're now directing the messages to the .DBG file instead we're not taking away any diagnostic ability, merely altering the location of the information. --- ebos/eclactionhandler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebos/eclactionhandler.cc b/ebos/eclactionhandler.cc index 5b42afd8e..989f334d5 100644 --- a/ebos/eclactionhandler.cc +++ b/ebos/eclactionhandler.cc @@ -101,7 +101,7 @@ namespace { (numInactive != 1) ? "s" : "", timeString); - Opm::OpmLog::info("ACTION_NOT_TRIGGERED", message); + Opm::OpmLog::debug("ACTION_NOT_TRIGGERED", message); } } // Anonymous namespace