Skip to content
Snippets Groups Projects
Commit 2ce6a11c authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Minor change

parent 5f3b3994
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment