123456789101112131415161718192021 |
- #pragma once
- #include <filesystem>
- #include "spdlog/spdlog.h"
- #include "spdlog/sinks/basic_file_sink.h"
- #include "spdlog/sinks/stdout_color_sinks.h"
- #include "spdlog/fmt/bundled/color.h"
- namespace AEngineEditor
- {
- namespace fmt = spdlog::fmt_lib;
- void initizlize_loggers(const std::filesystem::path& logdir);
- std::shared_ptr<spdlog::logger> app_logger();
- std::shared_ptr<spdlog::logger> plugin_manager_logger();
- } // namespace aengine_test_app
|