filesbox/app/filesbox_ios/FilesBox/Pods/SVGKit/Source/SVGKit.m
2023-09-21 10:53:23 +08:00

21 lines
399 B
Objective-C

//
// SVGKit.m
// SVGKit-iOS
//
// Created by Devon Blandin on 5/13/13.
// Copyright (c) 2013 na. All rights reserved.
//
#import "SVGKit.h"
#import "CocoaLumberjack/DDTTYLogger.h"
#import "CocoaLumberjack/DDASLLogger.h"
@implementation SVGKit : NSObject
+ (void) enableLogging {
[DDLog addLogger:[DDASLLogger sharedInstance]];
[DDLog addLogger:[DDTTYLogger sharedInstance]];
}
@end