diff --git a/include/aidge/utils/Log.hpp b/include/aidge/utils/Log.hpp
index 1321f18a980253ee3d50fce20b448583a4e34f96..8a18bbab34d3c1c86252833852abc5faca41dd96 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 a4993755defab3b63ed6f4fda4b27b37cec72633..7649809339f4ebf716a7287f5744fb94a5b67ce2 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) {