feat: add supervisor prototype with embedded frontend
This commit is contained in:
10
internal/util/logger.go
Normal file
10
internal/util/logger.go
Normal file
@ -0,0 +1,10 @@
|
||||
package util
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
)
|
||||
|
||||
func NewLogger() *log.Logger {
|
||||
return log.New(os.Stdout, "[supervisor] ", log.LstdFlags|log.Lmicroseconds)
|
||||
}
|
||||
Reference in New Issue
Block a user