https://github.com/tichise/tilogger
TILogger is a lightweight, flexible logging solution for Swift applications. It provides both instance-based and static logging methods with customizable formatting options.
https://github.com/tichise/tilogger
log logger logging swift
Last synced: about 1 year ago
JSON representation
TILogger is a lightweight, flexible logging solution for Swift applications. It provides both instance-based and static logging methods with customizable formatting options.
- Host: GitHub
- URL: https://github.com/tichise/tilogger
- Owner: tichise
- License: mit
- Created: 2020-06-20T10:33:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T13:38:48.000Z (over 1 year ago)
- Last Synced: 2025-06-21T23:34:58.221Z (about 1 year ago)
- Topics: log, logger, logging, swift
- Language: Swift
- Homepage:
- Size: 60.5 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
### TILogger   
TILogger is a simple logger for swift.
### Examples
#### Swift
```html
TILogger().setPrefix("").verbose("test")
TILogger().setPrefix("log").debug("test")
TILogger().setPrefix("TILogger").setDateFormat("yyyy/MM/dd HH:mm:ss").info("test")
TILogger().setPrefix("TILogger").setDateFormat( "HH:mm:ss").info("test")
TILogger().warning("test")
TILogger().error("test")
TILogger().verbose(2333)
```