Skip to content

Commit

Permalink
fix code quality for logger file
Browse files Browse the repository at this point in the history
  • Loading branch information
Aryagorjipour committed Oct 24, 2024
1 parent d6905bb commit fa8750b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/logger/logger.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
package logger
package loggerInfoLogger

Check failure on line 1 in pkg/logger/logger.go

View workflow job for this annotation

GitHub Actions / build

don't use MixedCaps in package name; loggerInfoLogger should be loggerinfologger

import (
"log"
"os"
)

var (
InfoLogger *log.Logger
// InfoLogger is a logger for informational messages
InfoLogger *log.Logger
// ErrorLogger is a logger for error messages
ErrorLogger *log.Logger
)

Expand Down

0 comments on commit fa8750b

Please sign in to comment.