filesbox/app/filesbox_ios/FilesBox/Pods/SVGKit/Source/SVGKit.m

21 lines
399 B
Mathematica
Raw Permalink Normal View History

2023-09-21 02:53:23 +00:00
//
// 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