Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation #3

Merged
merged 6 commits into from
Oct 11, 2022
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 62 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,64 @@
# LogsSheetKit

A description of this package.
## Table of contents

1. [Introduction](#introduction)
2. [Usage](#usage)
3. [Installation](#installation)
4. [Contribution](#contribution)
5. [Maintainers](#maintainers)

## Introduction

Lightweight customizable logger for iOS using Swift 5.7, with minimum iOS 14 version.
<img width="473" alt="Screenshot 2022-10-11 at 2 35 12 PM" src="https://user-images.githubusercontent.com/46320390/195005069-492cda9a-2381-40fc-a94a-7a6c110d4a6a.png">


## Usage

Usage of LogsSheetKit is pretty stright-forward, since LogsSheetKit handles most of the work by itself.
yermukhanbet marked this conversation as resolved.
Show resolved Hide resolved

In order to log any message, just call LogsSheetManager.shared.log(message: "your message to be logged")

``` swift
LogsSheetManager.shared.log(message: "Riiid!")
```

In order to open LogsSheetView, just present LogsSheet(), and that's it!


## Installation

Riiid's LogsSheetKit can be installed through Swift Package Manager easily and with comfort.

```swift
let package = Package(
name: "MyPackage",
dependencies: [
.package(url: "https://github.com/riiid/LogsSheetKit.git", .upToNextMajor(from: "1.0.0"))
],
targets: [
.target(name: "MyTarget", dependencies: ["LogsSheetKit"])
]
)
```


## Contribution

Any discussion and or pull requests are welcome!

In order to contribute, please subbranch from main, and after finishing the work open PR to main branch. Please note that PR should be reviewed by 2 people from code owners!

Please provide as much information about your proposed changes as possible.

## Maintainers

- [tisohjung](https://github.com/tisohjung)
- [korJAEYOUNGYUN](https://github.com/korJAEYOUNGYUN)
- [SongJiyeon](https://github.com/SongJiyeon)
- [yermukhanbet](https://github.com/yermukhanbet)

## License

LogsSheetKit is under MIT license. See the [LICENSE](https://github.com/riiid/LogsSheetKit/blob/main/LICENSE.md) for more info.