SVGKit.m 399 B

1234567891011121314151617181920
  1. //
  2. // SVGKit.m
  3. // SVGKit-iOS
  4. //
  5. // Created by Devon Blandin on 5/13/13.
  6. // Copyright (c) 2013 na. All rights reserved.
  7. //
  8. #import "SVGKit.h"
  9. #import "CocoaLumberjack/DDTTYLogger.h"
  10. #import "CocoaLumberjack/DDASLLogger.h"
  11. @implementation SVGKit : NSObject
  12. + (void) enableLogging {
  13. [DDLog addLogger:[DDASLLogger sharedInstance]];
  14. [DDLog addLogger:[DDTTYLogger sharedInstance]];
  15. }
  16. @end