dump unnecessary dependency

This commit is contained in:
Maximilian Kueffner
2025-08-17 21:56:24 +02:00
parent 5e06f767e9
commit 05c21bdce9
+1 -2
View File
@@ -3,7 +3,6 @@
#include "MyApp.hpp"
#include "resources/resource.hpp"
#include "uiresources.h"
#include "utilities/ILog.hpp"
#include "utilities/SpdLogger.hpp"
@@ -18,7 +17,7 @@ int main(int argc, char** argv)
#else
logger = make_unique<utils::log::SpdLogger>(std::string(getenv("HOME")) + "/.cache/pixelarium/log.log", "default");
#endif
logger->Info(std::format("{}: Starting Application {}", __FUNCTION__, PIXELARIUM_TITLE));
logger->Info(std::format("{}: Starting Application {}", __FUNCTION__, "Pixelarium"));
logger->ChangeLevel(utils::log::LogLevel::Debug);
auto image_pool{std::make_unique<resources::ImageResourcePool>()};