Skip to content

Commit

Permalink
Сделал createLogger публичным
Browse files Browse the repository at this point in the history
  • Loading branch information
lelvisl committed May 3, 2018
1 parent f9d5eba commit 7c838e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ func Logger(ctx context.Context) *log.Logger {
return l
}

func cleateLogger(config LogConfig) *log.Logger {
//CreateLogger from config
func CreateLogger(config LogConfig) *log.Logger {
logger := initLogger(config)
return logger
}
Expand Down

0 comments on commit 7c838e0

Please sign in to comment.