📚 structy/log - Awesome Go Library for Logging

Go Gopher mascot for structy/log

A simple to use log system, minimalist but with features for debugging and differentiation of messages.

🏷️ Logging
📂 Libraries for generating and working with log files.
5 stars
View on GitHub 🔗

Detailed Description of structy/log

structy/log

Build Status A simple to use log system, minimalist but with features for debugging and differentiation of messages

Example

Example

package main

import (
    "fmt"
    "github.com/structy/log"
)

func main() {
    log.Debugln("Debug message")

    log.DebugMode = false
    log.Debugln("Debug message that will be hidden")

    log.Println("Info message")
    log.Warningln("Warning message")
    log.Errorln("Error message")
    log.Fatal("Fatal error message")
    fmt.Println("I will never be printed because of Fatal()")
}