CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/03/26 16:22:24
Modified files:
src : log.cpp log.hpp
Log message:
Since I'm doing unnecessary commits to these files, I could at least
add the missing filesystem domain, so that it's done.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/log.cpp.diff?tr1=1.21&tr2=1.22&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/log.hpp.diff?tr1=1.21&tr2=1.22&r1=text&r2=text
Patches:
Index: wesnoth/src/log.cpp
diff -u wesnoth/src/log.cpp:1.21 wesnoth/src/log.cpp:1.22
--- wesnoth/src/log.cpp:1.21 Sat Mar 26 16:19:08 2005
+++ wesnoth/src/log.cpp Sat Mar 26 16:22:24 2005
@@ -1,4 +1,4 @@
-/* $Id: log.cpp,v 1.21 2005/03/26 16:19:08 silene Exp $ */
+/* $Id: log.cpp,v 1.22 2005/03/26 16:22:24 silene Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
2004 by Guillaume Melquiond <[EMAIL PROTECTED]>
@@ -46,7 +46,8 @@
namespace lg {
logger err("error", 0), warn("warning", 1), info("info", 2);
-log_domain general("general"), ai("ai"), config("config"), display("display"),
engine("engine"), network("network");
+log_domain general("general"), ai("ai"), config("config"), display("display"),
engine("engine"),
+ network("network"), filesystem("filesystem");
log_domain::log_domain(char const *name) : domain_(log_domains.size())
{
Index: wesnoth/src/log.hpp
diff -u wesnoth/src/log.hpp:1.21 wesnoth/src/log.hpp:1.22
--- wesnoth/src/log.hpp:1.21 Sat Mar 26 16:19:31 2005
+++ wesnoth/src/log.hpp Sat Mar 26 16:22:24 2005
@@ -1,4 +1,4 @@
-/* $Id: log.hpp,v 1.21 2005/03/26 16:19:31 silene Exp $ */
+/* $Id: log.hpp,v 1.22 2005/03/26 16:22:24 silene Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
2004 by Guillaume Melquiond <[EMAIL PROTECTED]>
@@ -40,7 +40,7 @@
};
extern logger err, warn, info;
-extern log_domain general, ai, config, display, engine, network;
+extern log_domain general, ai, config, display, engine, network, filesystem;
class scope_logger
{