blob: 4bad8e26fc0a7fe460adaa6b7ea39dc3394aa5a8 [file] [log] [blame]
//
// DDAssert.h
// CocoaLumberjack
//
// Created by Ernesto Rivera on 2014/07/07.
//
//
#import "DDLog.h"
#define DDAssert(condition, frmt, ...) if (!(condition)) { \
NSString * description = [NSString stringWithFormat:frmt, ##__VA_ARGS__]; \
DDLogError(@"%@", description); \
NSAssert(NO, description); }
#define DDAssertCondition(condition) DDAssert(condition, @"Condition not satisfied: %s", #condition)