first commit

This commit is contained in:
Adrian Zürcher
2025-04-16 08:23:48 +02:00
parent c6909181c8
commit e9c63e74eb
5 changed files with 98 additions and 0 deletions

14
main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import "github.com/tecamino/tecamino-logger.git/logger"
func main() {
log, err := logger.NewLogger("Test")
if err != nil {
panic(err)
}
log.Log(logger.Info, "line 10", "hallo")
log.Log(logger.Warning, "line 11", "vello")
log.Log(logger.Error, "line 12", "hie")
log.Log(logger.Debug, "line 13", "isch")
}