Flag for Logger Config yaml file name

Removed yaml filename from env.go and added its flag to scheduler.go
This commit is contained in:
balandi1 2019-11-26 13:08:45 -05:00
parent ef6d154d06
commit 24dbbb208f
5 changed files with 8 additions and 9 deletions

View file

@ -13,7 +13,7 @@ type Logger interface {
type LoggerImpl struct {
Type int
AllowOnConsole bool
LogFile *os.File
LogFile *os.File
next Logger
}