#ifdef DEBUG
#define MyLog(FORMAT, ...) fprintf(stderr,"Time:%s File:%s Methods:%s Line:%d Info:%s", __TIME__,[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String],__func__,__LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String])
#else
#define MyLog(FORMAT, ...) nil
#endif