Browse Source

Do not log the root path

Daniele Bartolini 12 years ago
parent
commit
f79a08c8e0
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/Filesystem.cpp

+ 0 - 2
src/Filesystem.cpp

@@ -38,8 +38,6 @@ Filesystem::Filesystem(const char* root_path)
 	assert(os::is_absolute_path(root_path));
 
 	string::strncpy(m_root_path, root_path, os::MAX_PATH_LENGTH);
-
-	Log::i("Root path : %s", m_root_path);
 }
 
 //-----------------------------------------------------------------------------