package middlewares_log import ( "log" ) func SetOutputLogFile() { logFile, _ := OpenFile("storage/logs/app.log") if logFile != nil { log.SetOutput(logFile) } }