diff options
author | Giacomo Pozzoni <giacomopoz@gmail.com> | 2020-07-31 20:53:13 +0000 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-24 20:21:25 +0100 |
commit | 61bf51874de432856ecd2c5794334bd256d4b014 (patch) | |
tree | 036fbac3f31f1a60730b265e3f991d5c7377d900 /src/common/Logging/Log.cpp | |
parent | a21fca5ddfad330401d631bfd01a2485576b4d22 (diff) |
Core/Misc: Fix static analysis issues (#25178)
(cherry picked from commit 7cf122fc2a604bae77d0b935536c41ec9203e62d)
Diffstat (limited to 'src/common/Logging/Log.cpp')
-rw-r--r-- | src/common/Logging/Log.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/common/Logging/Log.cpp b/src/common/Logging/Log.cpp index 59baea2c143..6c364105a7b 100644 --- a/src/common/Logging/Log.cpp +++ b/src/common/Logging/Log.cpp @@ -287,12 +287,13 @@ std::string Log::GetTimestampStr() } } -bool Log::SetLogLevel(std::string const& name, char const* newLevelc, bool isLogger /* = true */) +bool Log::SetLogLevel(std::string const& name, int32 newLeveli, bool isLogger /* = true */) { - LogLevel newLevel = LogLevel(atoi(newLevelc)); - if (newLevel < 0) + if (newLeveli < 0) return false; + LogLevel newLevel = LogLevel(newLeveli); + if (isLogger) { auto it = loggers.begin(); |