Skip to content

Commit

Permalink
fix log filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Oct 10, 2022
1 parent 25b481e commit 7fea821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.21 FATAL_ERROR)

set(BUILD_SHARED_LIBS OFF FORCE CACHE BOOL "Build libraries static")
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build libraries static" FORCE)
set(GEODE_VERSION 0.4.1)

project(geode-sdk VERSION ${GEODE_VERSION} LANGUAGES CXX C)
Expand Down
2 changes: 1 addition & 1 deletion loader/src/load/Log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void Log::pushToLoader() {
}

std::string geode::log::generateLogName() {
return fmt::format("Geode_{:%H.%M.%S}.log", log_clock::now());
return fmt::format("Geode {:%d %b %H.%M.%S}.log", log_clock::now());
}

void geode::log::vlogImpl(Severity severity, Mod* mod, std::string_view formatStr, std::function<void(Log&)>* components, size_t componentsSize) {
Expand Down

0 comments on commit 7fea821

Please sign in to comment.