Default log level to warning again.

Warning is a better default for the development version.
This commit is contained in:
Mark de Wever 2010-03-26 15:33:04 +00:00
parent b373b4e84a
commit 40d817e6bd
2 changed files with 3 additions and 1 deletions

View file

@ -5,6 +5,8 @@ Version 1.9.0-svn:
scenario.
* Language and i18n:
* Updated translations:
* Miscellaneous and bug fixes:
* Defaulted log level to warning again
Version 1.8.0:
* AI:

View file

@ -59,7 +59,7 @@ log_domain::log_domain(char const *name)
{
// Indirection to prevent initialization depending on link order.
if (!domains) domains = new domain_map;
domain_ = &*domains->insert(logd(name, 0)).first;
domain_ = &*domains->insert(logd(name, 1)).first;
}
bool set_log_domain_severity(std::string const &name, int severity)