An open API service indexing awesome lists of open source software.

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.

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