Readded log manager changes, now with a LOGV function to use the verbosity levels.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1093 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2008-11-07 20:08:31 +00:00
parent 47f103567c
commit 825335fc2c
26 changed files with 456 additions and 221 deletions

View File

@ -235,6 +235,7 @@ void Host_UpdateLogDisplay();
#ifdef LOGGING
#define LOG(t, ...) __Log(LogTypes::t, __VA_ARGS__);
#define LOGV(t,v, ...) __Log(LogTypes::t + v*100, __VA_ARGS__);
#define _dbg_assert_(_t_, _a_) \
if (!(_a_)){\
@ -252,6 +253,7 @@ void Host_UpdateLogDisplay();
#else
#define LOG(_t_, ...)
#define LOGV(_t_,_v_, ...)
#define _dbg_clear_()
#ifndef _dbg_assert_
#define _dbg_assert_(_t_, _a_) ;