changeset 15922:e324b9edf3df draft

(svn r20606) -Change [FS#4042]: change the debug level of the "Registering two AIs/libraries with the same name and version" message from 0 to 1
author yexo <yexo@openttd.org>
date Mon, 23 Aug 2010 22:44:08 +0000
parents 7c1f97a04d96
children fb2cc4b4fa4a
files src/ai/ai_scanner.cpp
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/ai/ai_scanner.cpp
+++ b/src/ai/ai_scanner.cpp
@@ -188,10 +188,10 @@
 			return;
 		}
 
-		DEBUG(ai, 0, "Registering two libraries with the same name and version");
-		DEBUG(ai, 0, "  1: %s", this->library_list[library_name]->GetMainScript());
-		DEBUG(ai, 0, "  2: %s", library->GetMainScript());
-		DEBUG(ai, 0, "The first is taking precedence.");
+		DEBUG(ai, 1, "Registering two libraries with the same name and version");
+		DEBUG(ai, 1, "  1: %s", this->library_list[library_name]->GetMainScript());
+		DEBUG(ai, 1, "  2: %s", library->GetMainScript());
+		DEBUG(ai, 1, "The first is taking precedence.");
 
 		delete library;
 		return;
@@ -225,10 +225,10 @@
 			return;
 		}
 
-		DEBUG(ai, 0, "Registering two AIs with the same name and version");
-		DEBUG(ai, 0, "  1: %s", this->info_list[ai_name]->GetMainScript());
-		DEBUG(ai, 0, "  2: %s", info->GetMainScript());
-		DEBUG(ai, 0, "The first is taking precedence.");
+		DEBUG(ai, 1, "Registering two AIs with the same name and version");
+		DEBUG(ai, 1, "  1: %s", this->info_list[ai_name]->GetMainScript());
+		DEBUG(ai, 1, "  2: %s", info->GetMainScript());
+		DEBUG(ai, 1, "The first is taking precedence.");
 
 		delete info;
 		return;