/** # Copyright (c) 2024, HCUOpt CORPORATION. All rights reserved. **/ package logger // Interface defines the API for the logger package type Interface interface { Debugf(string, ...interface{}) Errorf(string, ...interface{}) Info(...interface{}) Infof(string, ...interface{}) Warning(...interface{}) Warningf(string, ...interface{}) }