├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ScreenShot ├── ScreenShot1.PNG ├── ScreenShot2.PNG └── ScreenShot3.PNG ├── SuperLogger.podspec ├── SuperLogger.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SuperLogger.xcscheme ├── SuperLogger.xcworkspace └── contents.xcworkspacedata ├── SuperLogger ├── Info.plist ├── Resources │ └── SuperLogger.bundle │ │ ├── Base.lproj │ │ └── SLLocalizable.strings │ │ ├── Info.plist │ │ ├── de.lproj │ │ └── SLLocalizable.strings │ │ ├── en.lproj │ │ └── SLLocalizable.strings │ │ ├── pl-PL.lproj │ │ └── SLLocalizable.strings │ │ └── zh_CN.lproj │ │ └── SLLocalizable.strings ├── SuperLogerListView.h ├── SuperLogerListView.m ├── SuperLogger.h ├── SuperLogger.m ├── SuperLoggerFunctions.h ├── SuperLoggerFunctions.m ├── SuperLoggerPreviewView.h └── SuperLoggerPreviewView.m ├── SuperLoggerDemo ├── SuperLoggerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SuperLoggerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── SuperLoggerTests ├── Info.plist ├── SuperLoggerFunctionsTest.m └── SuperLoggerTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/ScreenShot1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/ScreenShot/ScreenShot1.PNG -------------------------------------------------------------------------------- /ScreenShot/ScreenShot2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/ScreenShot/ScreenShot2.PNG -------------------------------------------------------------------------------- /ScreenShot/ScreenShot3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/ScreenShot/ScreenShot3.PNG -------------------------------------------------------------------------------- /SuperLogger.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger.podspec -------------------------------------------------------------------------------- /SuperLogger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SuperLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SuperLogger.xcodeproj/xcshareddata/xcschemes/SuperLogger.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger.xcodeproj/xcshareddata/xcschemes/SuperLogger.xcscheme -------------------------------------------------------------------------------- /SuperLogger.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SuperLogger/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Info.plist -------------------------------------------------------------------------------- /SuperLogger/Resources/SuperLogger.bundle/Base.lproj/SLLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Resources/SuperLogger.bundle/Base.lproj/SLLocalizable.strings -------------------------------------------------------------------------------- /SuperLogger/Resources/SuperLogger.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Resources/SuperLogger.bundle/Info.plist -------------------------------------------------------------------------------- /SuperLogger/Resources/SuperLogger.bundle/de.lproj/SLLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Resources/SuperLogger.bundle/de.lproj/SLLocalizable.strings -------------------------------------------------------------------------------- /SuperLogger/Resources/SuperLogger.bundle/en.lproj/SLLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Resources/SuperLogger.bundle/en.lproj/SLLocalizable.strings -------------------------------------------------------------------------------- /SuperLogger/Resources/SuperLogger.bundle/pl-PL.lproj/SLLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Resources/SuperLogger.bundle/pl-PL.lproj/SLLocalizable.strings -------------------------------------------------------------------------------- /SuperLogger/Resources/SuperLogger.bundle/zh_CN.lproj/SLLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/Resources/SuperLogger.bundle/zh_CN.lproj/SLLocalizable.strings -------------------------------------------------------------------------------- /SuperLogger/SuperLogerListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLogerListView.h -------------------------------------------------------------------------------- /SuperLogger/SuperLogerListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLogerListView.m -------------------------------------------------------------------------------- /SuperLogger/SuperLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLogger.h -------------------------------------------------------------------------------- /SuperLogger/SuperLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLogger.m -------------------------------------------------------------------------------- /SuperLogger/SuperLoggerFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLoggerFunctions.h -------------------------------------------------------------------------------- /SuperLogger/SuperLoggerFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLoggerFunctions.m -------------------------------------------------------------------------------- /SuperLogger/SuperLoggerPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLoggerPreviewView.h -------------------------------------------------------------------------------- /SuperLogger/SuperLoggerPreviewView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLogger/SuperLoggerPreviewView.m -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/AppDelegate.h -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/AppDelegate.m -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/Info.plist -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/ViewController.h -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/ViewController.m -------------------------------------------------------------------------------- /SuperLoggerDemo/SuperLoggerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerDemo/SuperLoggerDemo/main.m -------------------------------------------------------------------------------- /SuperLoggerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerTests/Info.plist -------------------------------------------------------------------------------- /SuperLoggerTests/SuperLoggerFunctionsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerTests/SuperLoggerFunctionsTest.m -------------------------------------------------------------------------------- /SuperLoggerTests/SuperLoggerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yourtion/SuperLogger/HEAD/SuperLoggerTests/SuperLoggerTests.m --------------------------------------------------------------------------------