https://github.com/queckezz/julia-logger
A tiny logger for julia.
https://github.com/queckezz/julia-logger
Last synced: about 2 months ago
JSON representation
A tiny logger for julia.
- Host: GitHub
- URL: https://github.com/queckezz/julia-logger
- Owner: queckezz
- Created: 2014-06-30T20:23:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-02T16:00:01.000Z (over 11 years ago)
- Last Synced: 2025-03-13T23:21:10.426Z (7 months ago)
- Language: Julia
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## julia-logger
A tiny logger for julia.
### Installation
```bash
julia >Pkg.clone("queckezz/julia-logger")
```### Example
```julia
# import
import Logger:
Log,
log# create a new Log type
warn = Log("warn", "orange")# use it
log(warn, "a message")
```### Notes
Im just exploring Julia and trying to learn functional programming, as its one of the core philosophies in Julia. So expect things to change.
* Implement all bash colors
### Licence
The [MIT](http://opensource.org/licenses/MIT) License © 2014, Fabian Eichenberger