feat(log): remove core dependency and update core interface to be dependency free (#21045)

Co-authored-by: marbar3778 <marbar3778@yahoo.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
Aaron Craelius
2024-07-26 11:00:27 +00:00
committed by GitHub
co-authored by marbar3778 Julien Robert
parent 9f5ee3a083
commit 5c90246b3f
139 changed files with 418 additions and 421 deletions
+1 -1
View File
@@ -17,5 +17,5 @@ func (nopLogger) Info(string, ...any) {}
func (nopLogger) Warn(string, ...any) {}
func (nopLogger) Error(string, ...any) {}
func (nopLogger) Debug(string, ...any) {}
func (nopLogger) With(...any) log.Logger { return nopLogger{} }
func (nopLogger) WithContext(...any) any { return nopLogger{} }
func (nopLogger) Impl() any { return nopLogger{} }