https://github.com/excalith/slug-unity-logger
Unity3D Log Generator
https://github.com/excalith/slug-unity-logger
Last synced: over 1 year ago
JSON representation
Unity3D Log Generator
- Host: GitHub
- URL: https://github.com/excalith/slug-unity-logger
- Owner: excalith
- Created: 2019-07-13T14:52:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-13T15:58:15.000Z (almost 7 years ago)
- Last Synced: 2024-10-12T07:43:22.172Z (over 1 year ago)
- Language: C#
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SLUG - Unity Logger
## What Is This?
A simple Unity3D `Debug.Log` replacement based on [Log Unity](https://github.com/frarf/log.unity). Does nothing extraordinary, except for formatting log output into this:
```
[CLASS NAME] Your lovely debug log message
```
## Benefits
This helps developers to easily read, or even better parse the mighty `Engine.log` for player progression easily.
## Usage
Download `Slug.cs` into `Assets` folder.
You can use it just like `Debug.Log` but instead of `Debug`, you should use `Slug`
- Slug.Log(string message)
- Slug.LogWarning(string message)
- Slug.LogError(string message)
## Parser
You can find a simple parser to export readable markdown file from `Engine.log`: [SLUG - Unity Log Parser](https://github.com/excalith/slug-unity-log-parser)