├── .codebeatignore ├── .gitignore ├── Example ├── OkLog-Shared │ ├── Client.swift │ └── Constants.swift ├── OkLog-iOS │ ├── AppDelegate.swift │ ├── Info.plist │ ├── Storyboards │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ └── ViewController.swift ├── OkLog-macOS │ ├── AppDelegate.swift │ ├── Info.plist │ ├── Main.storyboard │ ├── OkLog-macOS.entitlements │ └── ViewController.swift ├── OkLog.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── OkLog-iOS.xcscheme │ │ └── OkLog-macOS.xcscheme ├── OkLog.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Podfile ├── LICENSE ├── OkLog.podspec ├── Package.swift ├── Protos ├── bodystate.proto ├── headerdata.proto └── logdata.proto ├── README.md ├── Sources ├── Alamofire │ └── OkLog+Alamofire.swift └── Core │ ├── Constants.swift │ ├── Extensions │ ├── Data.swift │ ├── Dictionary.swift │ ├── LogData.swift │ └── String.swift │ ├── Generated │ ├── bodystate.pb.swift │ ├── headerdata.pb.swift │ └── logdata.pb.swift │ └── OkLog.swift └── Tests └── OkLogTests ├── ExtensionsTests.swift ├── OkLogTests.swift └── XCTestManifests.swift /.codebeatignore: -------------------------------------------------------------------------------- 1 | Sources/Core/Generated/* 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/OkLog-Shared/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-Shared/Client.swift -------------------------------------------------------------------------------- /Example/OkLog-Shared/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-Shared/Constants.swift -------------------------------------------------------------------------------- /Example/OkLog-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/OkLog-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-iOS/Info.plist -------------------------------------------------------------------------------- /Example/OkLog-iOS/Storyboards/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-iOS/Storyboards/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/OkLog-iOS/Storyboards/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-iOS/Storyboards/Main.storyboard -------------------------------------------------------------------------------- /Example/OkLog-iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-iOS/ViewController.swift -------------------------------------------------------------------------------- /Example/OkLog-macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-macOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/OkLog-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-macOS/Info.plist -------------------------------------------------------------------------------- /Example/OkLog-macOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-macOS/Main.storyboard -------------------------------------------------------------------------------- /Example/OkLog-macOS/OkLog-macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-macOS/OkLog-macOS.entitlements -------------------------------------------------------------------------------- /Example/OkLog-macOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog-macOS/ViewController.swift -------------------------------------------------------------------------------- /Example/OkLog.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/OkLog.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/OkLog.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/OkLog.xcodeproj/xcshareddata/xcschemes/OkLog-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcodeproj/xcshareddata/xcschemes/OkLog-iOS.xcscheme -------------------------------------------------------------------------------- /Example/OkLog.xcodeproj/xcshareddata/xcschemes/OkLog-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcodeproj/xcshareddata/xcschemes/OkLog-macOS.xcscheme -------------------------------------------------------------------------------- /Example/OkLog.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/OkLog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/OkLog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Example/Podfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /OkLog.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/OkLog.podspec -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Package.swift -------------------------------------------------------------------------------- /Protos/bodystate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Protos/bodystate.proto -------------------------------------------------------------------------------- /Protos/headerdata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Protos/headerdata.proto -------------------------------------------------------------------------------- /Protos/logdata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Protos/logdata.proto -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Alamofire/OkLog+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Alamofire/OkLog+Alamofire.swift -------------------------------------------------------------------------------- /Sources/Core/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Constants.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Extensions/Data.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Extensions/Dictionary.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/LogData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Extensions/LogData.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Extensions/String.swift -------------------------------------------------------------------------------- /Sources/Core/Generated/bodystate.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Generated/bodystate.pb.swift -------------------------------------------------------------------------------- /Sources/Core/Generated/headerdata.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Generated/headerdata.pb.swift -------------------------------------------------------------------------------- /Sources/Core/Generated/logdata.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/Generated/logdata.pb.swift -------------------------------------------------------------------------------- /Sources/Core/OkLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Sources/Core/OkLog.swift -------------------------------------------------------------------------------- /Tests/OkLogTests/ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Tests/OkLogTests/ExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/OkLogTests/OkLogTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Tests/OkLogTests/OkLogTests.swift -------------------------------------------------------------------------------- /Tests/OkLogTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegotl/OkLog-Swift/HEAD/Tests/OkLogTests/XCTestManifests.swift --------------------------------------------------------------------------------