diff options
Diffstat (limited to 'src/common/Logging/Log.h')
-rw-r--r-- | src/common/Logging/Log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Logging/Log.h b/src/common/Logging/Log.h index a4e0cb6a5dc..189971561fc 100644 --- a/src/common/Logging/Log.h +++ b/src/common/Logging/Log.h @@ -126,7 +126,7 @@ inline Logger const* Log::GetLoggerByType(std::string const& type) const return NULL; std::string parentLogger = LOGGER_ROOT; - size_t found = type.find_last_of("."); + size_t found = type.find_last_of('.'); if (found != std::string::npos) parentLogger = type.substr(0,found); |