Default log level to error again.

This to avoid flooding the output in the stable releases, can be
lowered again after forking the branch.
This commit is contained in:
Mark de Wever 2010-03-15 21:02:21 +00:00
parent 45941a3a99
commit 98113ed6ca
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,8 @@
Version 1.7.15+svn:
* Language and i18n:
* Updated translations: Latvian
* Miscellaneous and bug fixes:
* Defaulted log level to error again
Version 1.7.15-1.8rc1:
* 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, 1)).first;
domain_ = &*domains->insert(logd(name, 0)).first;
}
bool set_log_domain_severity(std::string const &name, int severity)