Simple Golang package for common logging requirements
Find a file
2025-03-06 11:25:38 +01:00
cmd/logger feat: initial commit 2025-03-06 11:25:38 +01:00
go.mod feat: initial commit 2025-03-06 11:25:38 +01:00
LICENSE feat: initial commit 2025-03-06 11:25:38 +01:00
readme.md feat: initial commit 2025-03-06 11:25:38 +01:00
renovate.json feat: initial commit 2025-03-06 11:25:38 +01:00

Logger

This simple Golang package can be used for common logging functionality.

Options

logger.SetAppName("todo-app")     # optional; default "MyApp"
logger.SetDebug(true)             # optional; default false

Usage examples

logger.Print("Simple log message withouth error", nil)
logger.Fatal("Fatal log message with error", err)

Will be printed like this:

2025/12/01 11:17:35 todo-app | LOG: Simple log message withouth error
2025/12/01 11:17:35 todo-app | FATAL: Fatal log message with error
2025/12/01 11:17:35 todo-app | ERROR: <insert value of err> 

Return functions

logger.GetAppName() will return the current used app name as a string.
logger.GetDebug() will return the current debug setting as a bool.