From 2dce26c9f01629c9f371c3eedfe33d7cb1fc3a6c Mon Sep 17 00:00:00 2001 From: Liu Ming Date: Wed, 8 Jun 2016 10:52:23 +0200 Subject: [PATCH] fix indentation and order. --- opm/common/OpmLog/LogUtil.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/opm/common/OpmLog/LogUtil.hpp b/opm/common/OpmLog/LogUtil.hpp index 06ce20ee4..633795a7d 100644 --- a/opm/common/OpmLog/LogUtil.hpp +++ b/opm/common/OpmLog/LogUtil.hpp @@ -26,17 +26,17 @@ namespace Opm { namespace Log { namespace MessageType { - const int64_t Debug = 1; /* Excessive information */ - const int64_t Note = 2; /* Information that should only go into print file.*/ - const int64_t Info = 4; /* Normal status information */ - const int64_t Warning = 8; /* Input anomaly - possible error */ - const int64_t Error = 16; /* Error in the input data - should probably exit. */ - const int64_t Problem = 32; /* Calculation problems - e.g. convergence failure. */ - const int64_t Bug = 64; /* An inconsistent state has been encountered in the simulator - should probably exit. */ + const int64_t Debug = 1; /* Excessive information */ + const int64_t Note = 2; /* Information that should only go into print file.*/ + const int64_t Info = 4; /* Normal status information */ + const int64_t Warning = 8; /* Input anomaly - possible error */ + const int64_t Error = 16; /* Error in the input data - should probably exit. */ + const int64_t Problem = 32; /* Calculation problems - e.g. convergence failure. */ + const int64_t Bug = 64; /* An inconsistent state has been encountered in the simulator - should probably exit. */ } - const int64_t DefaultMessageTypes = MessageType::Debug + MessageType::Info + MessageType::Warning + MessageType::Error + MessageType::Problem + MessageType::Bug + MessageType::Note; - const int64_t NoDebugMessageTypes = MessageType::Info + MessageType::Warning + MessageType::Error + MessageType::Problem + MessageType::Bug + MessageType::Note; + const int64_t DefaultMessageTypes = MessageType::Debug + MessageType::Note + MessageType::Info + MessageType::Warning + MessageType::Error + MessageType::Problem + MessageType::Bug; + const int64_t NoDebugMessageTypes = MessageType::Info + MessageType::Note + MessageType::Warning + MessageType::Error + MessageType::Problem + MessageType::Bug; const int64_t StdoutMessageTypes = MessageType::Info + MessageType::Warning + MessageType::Error + MessageType::Problem + MessageType::Bug; /// Terminal codes for ANSI/vt100 compatible terminals.