ELExport 0.0.3

ELExport 0.0.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2016

Maintained by viktyz.



ELExport 0.0.3

  • By
  • Alfred Jiang

Analytics

ELExport is an easy and safe way to export log file. Using ELog instead of NSLog you can get more information from log file in disk.

How To Get Started

  • Download ELExport and try out the included iOS example project ELog.xcodeproj.
  • Also you can try test cases in ELogTests.m to learn how to use the methods in ELExport.h.

Communication

  • If you'd like to ask a general question, send email to [email protected].
  • If you found a bug, and can provide steps to reliably reproduce it, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Installation

Podfile

To integrate ELExport into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'

target 'TargetName' do
pod 'ELExport', '~> 0.0.3'
end

Then, run the following command:

$ pod install

Architecture

  • ELEFile
  • ELExport

Usage

After import ELExport.h in the code file where you want to export log to file in disk, just try to replace NSLog with ELog. Then all the logs will saved to file in disk automaticly in the right time and safe way.

Known issues

Any important log record, be sure to use [[ELExport sharedExport] synchronize] to keep it in sync.

License

The MIT License (MIT)

Copyright (c) 2016 Alfred Jiang

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.