21 lines
399 B
Mathematica
21 lines
399 B
Mathematica
|
//
|
||
|
// 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
|