• This project
    • Loading...
  • Sign in

guangka / sdk_guangka_ios

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • sdk_guangka_ios
  • framework
  • HaiBaoJuheSDK.framework
  • Headers
  • AthlonLengthsHaiBaoJuheDGLoggerTenor.h
  • xuguohong's avatar
    update · e8130b7a
    e8130b7a
    xuguohong authored 2020-03-09 12:33:14 +0800
AthlonLengthsHaiBaoJuheDGLoggerTenor.h 392 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#import <Foundation/Foundation.h>
 
void DGLog(NSString *fmt, ...);

typedef NS_ENUM(NSInteger, DGLoggerLevel)
{
    ELogVerbose = 1,
    ELogDebug,
    ELogInfo,
    ELogWarn,
    ELogError
};

@interface AthlonLengthsHaiBaoJuheDGLoggerTenor : NSObject

+ (void)showLog:(NSString *)fmt,...;

+ (void)showLog:(DGLoggerLevel)level log:(NSString *)fmt,...;

+ (void)isShowLog:(BOOL)flag;

@end