Skip to content

Commit

Permalink
sonarqube: fix logger
Browse files Browse the repository at this point in the history
  • Loading branch information
surendratiwari3 committed Feb 6, 2024
1 parent 0fa69ad commit 19cf780
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions internal/logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ var ApplicationLogger Logger = &DefaultLogger{}

func (l *DefaultLogger) Debug(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Info(args ...interface{}) {
Expand All @@ -20,12 +19,10 @@ func (l *DefaultLogger) Info(args ...interface{}) {

func (l *DefaultLogger) Warn(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Warning(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Error(args ...interface{}) {
Expand All @@ -34,80 +31,64 @@ func (l *DefaultLogger) Error(args ...interface{}) {

func (l *DefaultLogger) Fatal(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Panic(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Debugln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Infoln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Warnln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Warningln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Errorln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Fatalln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Panicln(args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Debugf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Infof(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Warnf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Warningf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Errorf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Fatalf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

func (l *DefaultLogger) Panicf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}

0 comments on commit 19cf780

Please sign in to comment.