17 lines
324 B
Objective-C
Executable File
17 lines
324 B
Objective-C
Executable File
//
|
|
// ENDLog.h
|
|
// ENBLEProject
|
|
//
|
|
// Created by lvwang2002 on 16/4/14.
|
|
// Copyright © 2016年 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#define ENLog(x) [[ENDLog share] log:(x)]
|
|
|
|
@interface ENDLog : NSObject
|
|
@property BOOL isDisplayLog;
|
|
+(instancetype)share;
|
|
-(void)log:(NSString *)log;
|
|
@end
|