Sets default value of ConsoleLine channel to "Console"

This commit is contained in:
Kenix3 2022-08-09 21:53:22 -04:00
parent c7ccd6dbff
commit f97f9ae422
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace Ship {
struct ConsoleLine {
std::string text;
spdlog::level::level_enum priority = spdlog::level::info;
std::string channel = "Main";
std::string channel = "Console";
};
class Console {