mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Set default DEBUG when produce a debug build
This commit is contained in:
parent
d96fc0858c
commit
de78674d62
@ -231,7 +231,11 @@ LogChannel::LogChannel(const char* shortName, const char* fullName, bool enable)
|
||||
: enable_(enable) {
|
||||
strncpy(m_fullName, fullName, 128);
|
||||
strncpy(m_shortName, shortName, 32);
|
||||
#if defined(_DEBUG)
|
||||
level_ = LogTypes::LDEBUG;
|
||||
#else
|
||||
level_ = LogTypes::LINFO;
|
||||
#endif
|
||||
}
|
||||
|
||||
// LogContainer
|
||||
|
Loading…
Reference in New Issue
Block a user