Grail (C++)  1.4.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
LogFormatters.h
1 // Copyright QED Software 2023.
2 
3 #ifndef GRAIL_LOG_FORMATTERS_H
4 #define GRAIL_LOG_FORMATTERS_H
5 
6 #include <string>
7 #include "LoggerManager.hh"
8 
9 namespace grail
10 {
11 namespace logger
12 {
13  std::string DefaultLogFormat(const std::string& loggerName,
14  Severity severity,
15  const std::string& message,
16  const std::string& logFileLocation,
17  const std::size_t& logLineNumber);
18 
19  std::string SeverityMessage(Severity severity);
20 }
21 }
22 
23 #endif //GRAIL_LOG_FORMATTERS_H