Default log level to warning again.
Warning is a better default for the development version.
This commit is contained in:
parent
b373b4e84a
commit
40d817e6bd
2 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue