diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
commit | 6538641e8703084460df70d04196ac271eff1266 (patch) | |
tree | 2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /include/logger.h | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/logger.h')
-rw-r--r-- | include/logger.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/logger.h b/include/logger.h index c23b00666..6c524d487 100644 --- a/include/logger.h +++ b/include/logger.h @@ -50,7 +50,7 @@ struct LogFile /* Represents a single log message */ class CoreExport Log { - public: +public: /* Bot that should log this message */ BotInfo *bi = nullptr; /* For commands, the user executing the command, but might not always exist */ @@ -94,11 +94,11 @@ class CoreExport Log ~Log(); - private: +private: Anope::string FormatSource() const; Anope::string FormatCommand() const; - public: +public: Anope::string BuildPrefix() const; template<typename T> Log &operator<<(T val) @@ -111,7 +111,7 @@ class CoreExport Log /* Configured in the configuration file, actually does the message logging */ class CoreExport LogInfo { - public: +public: BotInfo *bot = nullptr; std::vector<Anope::string> targets; std::vector<LogFile *> logfiles; |