Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Go logging library

This library is my own simple logging library that I use for my personal projects.

Feel free to go through the examples to get started.

Go version

How to install

go get github.com/DinnieJ/logger

Check the sample code in _example folders

You can write your own logger by implementing the Logger interface

Example

package main

import (
    "github.com/DinnieJ/logger"
)
// This example will be updated, i'm too lazy rn, sorry
type MyLogger struct {
    // your logger implementation
}

func (l *MyLogger) Info(msg string) {
    // your logger implementation
}

License

The project is licensed under the MIT License.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages