2013-10-11 09:03:55 -03: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 02:49:27 -03:00
|
|
|
#define DLog(fmt, ...) NSLog((@"%s (line %d) " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
|
2013-10-11 09:03:55 -03:00
|
|
|
#else
|
2022-02-07 02:49:27 -03:00
|
|
|
#define DLog(...)
|
2013-10-11 09:03:55 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ALog(fmt, ...) NSLog((@"%s (line %d) " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
|