diff -r 1c74985d4c4e -r 63154f9d24a2 Logger.cpp --- a/Logger.cpp Tue Apr 15 22:44:31 2025 +0200 +++ b/Logger.cpp Tue Apr 15 22:45:25 2025 +0200 @@ -1,6 +1,6 @@ /** * DJM-Fix - * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info) + * Copyright © 2025 František Kučera (Frantovo.cz, GlobalCode.info) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -56,12 +56,15 @@ public: - LoggerImpl(std::ostream& output, Level minLevel) : output(output), minLevel(minLevel) { + LoggerImpl(std::ostream& output, Level minLevel) + : output(output), minLevel(minLevel) { } virtual void log(Level level, const std::string& message) override { if (level <= minLevel) { - output << getTimestamp() << " " << std::setw(8) << toString(level) << ": " << message << std::endl; + output << getTimestamp() + << " " << std::setw(8) << toString(level) + << ": " << message << std::endl; } } };