cog/DBLog.c

25 lines
295 B
C
Raw Normal View History

2005-06-02 18:16:43 +00:00
/*
* NSDebug.c
* Cog
*
* Created by Zaphod Beeblebrox on 5/30/05.
* Copyright 2005 __MyCompanyName__. All rights reserved.
*
*/
#include "DBLog.h"
void DBLog(NSString *format, ...)
{
#ifdef DEBUG
va_list ap;
va_start(ap, format);
NSLogv(format, ap);
va_end(ap);
#endif
}