You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
602 B

2 years ago
//
// JCLog.h
// JCSDKOC
//
// Created by maikireton on 2017/8/22.
// Copyright © 2017年 juphoon. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface JCLog : NSObject
/**
* @brief
* @param reason
* @return
*/
+(bool)uploadLog:(NSString*)reason;
/**
* error
*/
+(void)debug:(NSString*)type format:(NSString*)format, ...;
/**
* info
*/
+(void)info:(NSString*)type format:(NSString*)format, ...;
/**
* error
*/
+(void)error:(NSString*)type format:(NSString*)format, ...;
@end