2013-10-11 12:03:55 +00:00
|
|
|
//
|
|
|
|
// Logging.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Shamelessly stolen from stackoverflow by Dmitry Promsky on 3/7/12.
|
|
|
|
// Copyright 2012 dmitry.promsky@gmail.com. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2022-02-07 05:49:27 +00:00
|
|
|
#define DLog(fmt, ...) NSLog((@"%s (line %d) " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
|
2013-10-11 12:03:55 +00:00
|
|
|
#else
|
2022-02-07 05:49:27 +00:00
|
|
|
#define DLog(...)
|
2013-10-11 12:03:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ALog(fmt, ...) NSLog((@"%s (line %d) " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
|