diff options
| author | 2021-05-22 06:39:47 +0100 | |
|---|---|---|
| committer | 2021-05-22 06:39:47 +0100 | |
| commit | b08e70f0bf4280858fdf8fd8214ca28ffa55e669 (patch) | |
| tree | a500f10e4c266a5528f3ceaac22c5b92cfc8e115 /src/logger.cpp | |
| parent | Remove the empty handler for linking stats from core_stats. (diff) | |
| parent | Only check for a join time if a user is actually in the channel. (diff) | |
| download | inspircd++-b08e70f0bf4280858fdf8fd8214ca28ffa55e669.tar.gz inspircd++-b08e70f0bf4280858fdf8fd8214ca28ffa55e669.tar.bz2 inspircd++-b08e70f0bf4280858fdf8fd8214ca28ffa55e669.zip | |
Merge branch 'insp3' into master.
Diffstat (limited to 'src/logger.cpp')
| -rw-r--r-- | src/logger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index 2e6d02348..91d1dd923 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -72,7 +72,7 @@ void LogManager::OpenFileLogs() for (const auto& [_, tag] : ServerInstance->Config->ConfTags("log")) { - std::string method = tag->getString("method"); + const std::string method = tag->getString("method", "file", 1); if (!stdalgo::string::equalsci(method, "file")) { continue; |
