From 2ce6a11ca5dad2c8591ab479f61347ad57eb1305 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 5 Mar 2024 10:06:45 +0100 Subject: [PATCH] Minor change --- include/aidge/utils/Log.hpp | 2 +- src/utils/Log.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp index 1321f18a9..8a18bbab3 100644 --- a/include/aidge/utils/Log.hpp +++ b/include/aidge/utils/Log.hpp @@ -85,7 +85,7 @@ public: /** * Signifies a problem or unexpected condition that the application can * recover from, but attention is needed to prevent further issues. - * The operation could not be performed, but it does not prevent potentiel + * The operation could not be performed, but it does not prevent potential * further operations. */ template <typename... Args> diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index a4993755d..764980933 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -17,7 +17,7 @@ Aidge::Log::Level Aidge::Log::mConsoleLevel = Info; Aidge::Log::Level Aidge::Log::mFileLevel = Debug; -std::string Aidge::Log::mFileName = "aidge_log.txt"; +std::string Aidge::Log::mFileName = "aidge.log"; std::unique_ptr<FILE, decltype(&std::fclose)> Aidge::Log::mFile {nullptr, nullptr}; void Aidge::Log::log(Level level, const std::string& msg) { -- GitLab