mirror of
https://github.com/donl/gPanel.git
synced 2026-06-30 06:12:06 -06:00
minor refactor
This commit is contained in:
parent
cd68f2da85
commit
9b189d7d32
1 changed files with 4 additions and 6 deletions
|
|
@ -4,13 +4,11 @@ package logging
|
|||
import "os"
|
||||
|
||||
const (
|
||||
PRIVATE_LOG_FOLDER string = "logs/private/"
|
||||
PUBLIC_LOG_FOLDER string = "logs/public/"
|
||||
)
|
||||
PRIVATE_LOG_FOLDER = "logs/private/"
|
||||
PUBLIC_LOG_FOLDER = "logs/public/"
|
||||
|
||||
const (
|
||||
ERROR string = "error.log"
|
||||
WARNING string = "warning.log"
|
||||
ERROR = "error.log"
|
||||
WARNING = "warning.log"
|
||||
)
|
||||
|
||||
// File logs a given message to a log file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue