├── .gitignore ├── CCLogSystem.podspec ├── CCLogSystem.xcworkspace └── contents.xcworkspacedata ├── CCLogSystem ├── CCLogSystem.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CCLogSystem │ ├── CCFileOutputRedirectionController.h │ ├── CCLocationMake.h │ ├── CCLocationMake.m │ ├── CCLog.h │ ├── CCLog.m │ ├── CCLogController+Utility.h │ ├── CCLogController+Utility.m │ ├── CCLogController.h │ ├── CCLogController.m │ ├── CCLogReviewViewController.h │ ├── CCLogReviewViewController.m │ ├── CCLogStringImp.h │ ├── CCLogStringImp.m │ ├── CCLogSystem.h │ ├── CCLogSystem.m │ ├── CCLogViewController.h │ ├── CCLogViewController.m │ ├── CCSimpleFileOutputRedirectionController.h │ ├── CCSimpleFileOutputRedirectionController.m │ ├── CCTeeController.h │ ├── CCTeeController.m │ ├── NSObject+CCReverseComparison.h │ └── NSObject+CCReverseComparison.m └── CCLogSystemTests │ └── Info.plist ├── CCLogSystemDemo ├── CCLogSystemDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CCLogSystemDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── CCLogSystemDemoTests │ ├── CCLogSystemDemoTests.m │ └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /CCLogSystem.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem.podspec -------------------------------------------------------------------------------- /CCLogSystem.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCFileOutputRedirectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCFileOutputRedirectionController.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLocationMake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLocationMake.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLocationMake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLocationMake.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLog.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLog.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogController+Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogController+Utility.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogController+Utility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogController+Utility.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogController.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogController.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogReviewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogReviewViewController.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogReviewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogReviewViewController.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogStringImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogStringImp.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogStringImp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogStringImp.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogSystem.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogSystem.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogViewController.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCLogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCLogViewController.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCSimpleFileOutputRedirectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCSimpleFileOutputRedirectionController.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCSimpleFileOutputRedirectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCSimpleFileOutputRedirectionController.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCTeeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCTeeController.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/CCTeeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/CCTeeController.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/NSObject+CCReverseComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/NSObject+CCReverseComparison.h -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystem/NSObject+CCReverseComparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystem/NSObject+CCReverseComparison.m -------------------------------------------------------------------------------- /CCLogSystem/CCLogSystemTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystem/CCLogSystemTests/Info.plist -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/AppDelegate.h -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/AppDelegate.m -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/Info.plist -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/ViewController.h -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/ViewController.m -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemo/main.m -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemoTests/CCLogSystemDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemoTests/CCLogSystemDemoTests.m -------------------------------------------------------------------------------- /CCLogSystemDemo/CCLogSystemDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/CCLogSystemDemo/CCLogSystemDemoTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunyeah/CCLogSystem/HEAD/README.md --------------------------------------------------------------------------------