diff options
| author | 2025-03-29 04:31:31 +0000 | |
|---|---|---|
| committer | 2025-03-29 04:33:29 +0000 | |
| commit | 8b5bccaa8c382cca1dfae3c985e6045f1c367e1f (patch) | |
| tree | 7161d8e2912031c7cc48e2c81cee8c2aa590c54f /modules/log_json.cpp | |
| parent | Remove support for in-query password comparison in sqlauth. (diff) | |
| parent | Release v4.7.0. (diff) | |
| download | inspircd++-8b5bccaa8c382cca1dfae3c985e6045f1c367e1f.tar.gz inspircd++-8b5bccaa8c382cca1dfae3c985e6045f1c367e1f.tar.bz2 inspircd++-8b5bccaa8c382cca1dfae3c985e6045f1c367e1f.zip | |
Merge branch 'insp4' into master.
Diffstat (limited to 'modules/log_json.cpp')
| -rw-r--r-- | modules/log_json.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/log_json.cpp b/modules/log_json.cpp index 5ab03ed75..74ea65d67 100644 --- a/modules/log_json.cpp +++ b/modules/log_json.cpp @@ -1,7 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2022-2024 Sadie Powell <sadie@witchery.services> + * Copyright (C) 2022-2025 Sadie Powell <sadie@witchery.services> * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -66,7 +66,7 @@ public: if (prevtime != time) { prevtime = time; - timestr = Time::ToString(prevtime, "%Y-%m-%dT%H:%M:%S%z"); + timestr = Time::ToString(prevtime, Time::ISO_8601); } const auto* levelstr = Log::LevelToString(level); |
