fixed order of debug & trace according to spec

This commit is contained in:
proddy
2020-06-13 15:46:49 +02:00
parent ee29a39140
commit 20ce017686
7 changed files with 8 additions and 8 deletions

View File

@@ -35,8 +35,8 @@ std::vector<std::string> levels_lowercase() {
uuid::read_flash_string(format_level_lowercase(Level::WARNING)),
uuid::read_flash_string(format_level_lowercase(Level::NOTICE)),
uuid::read_flash_string(format_level_lowercase(Level::INFO)),
uuid::read_flash_string(format_level_lowercase(Level::TRACE)), // switched by proddy
uuid::read_flash_string(format_level_lowercase(Level::DEBUG)),
uuid::read_flash_string(format_level_lowercase(Level::TRACE)),
uuid::read_flash_string(format_level_lowercase(Level::ALL))};
}