examples - comments
Some checks failed
Build / Build (push) Failing after 2m8s

This commit is contained in:
2026-04-12 23:42:15 -04:00
parent fd35e93831
commit 14b4e60d3a
4 changed files with 47 additions and 14 deletions

View File

@@ -49,8 +49,8 @@ namespace OatmealUtils {
}
inline void createLogger(std::string name, std::string filename) { createLogger(name.c_str(), filename.c_str()); }
inline std::shared_ptr<logger> get(const char *name) { return spdlog::get(name); }
inline std::shared_ptr<logger> get(std::string name) { return spdlog::get(name); }
inline std::shared_ptr<logger> getLogger(const char *name) { return spdlog::get(name); }
inline std::shared_ptr<logger> getLogger(std::string name) { return spdlog::get(name); }
} // namespace OatmealUtils