 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			114 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package bbolt
 | |
| 
 | |
| // See https://github.com/etcd-io/raft/blob/main/logger.go
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"log"
 | |
| 	"os"
 | |
| )
 | |
| 
 | |
| type Logger interface {
 | |
| 	Debug(v ...interface{})
 | |
| 	Debugf(format string, v ...interface{})
 | |
| 
 | |
| 	Error(v ...interface{})
 | |
| 	Errorf(format string, v ...interface{})
 | |
| 
 | |
| 	Info(v ...interface{})
 | |
| 	Infof(format string, v ...interface{})
 | |
| 
 | |
| 	Warning(v ...interface{})
 | |
| 	Warningf(format string, v ...interface{})
 | |
| 
 | |
| 	Fatal(v ...interface{})
 | |
| 	Fatalf(format string, v ...interface{})
 | |
| 
 | |
| 	Panic(v ...interface{})
 | |
| 	Panicf(format string, v ...interface{})
 | |
| }
 | |
| 
 | |
| func getDiscardLogger() Logger {
 | |
| 	return discardLogger
 | |
| }
 | |
| 
 | |
| var (
 | |
| 	discardLogger = &DefaultLogger{Logger: log.New(io.Discard, "", 0)}
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	calldepth = 2
 | |
| )
 | |
| 
 | |
| // DefaultLogger is a default implementation of the Logger interface.
 | |
| type DefaultLogger struct {
 | |
| 	*log.Logger
 | |
| 	debug bool
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) EnableTimestamps() {
 | |
| 	l.SetFlags(l.Flags() | log.Ldate | log.Ltime)
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) EnableDebug() {
 | |
| 	l.debug = true
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Debug(v ...interface{}) {
 | |
| 	if l.debug {
 | |
| 		_ = l.Output(calldepth, header("DEBUG", fmt.Sprint(v...)))
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Debugf(format string, v ...interface{}) {
 | |
| 	if l.debug {
 | |
| 		_ = l.Output(calldepth, header("DEBUG", fmt.Sprintf(format, v...)))
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Info(v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("INFO", fmt.Sprint(v...)))
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Infof(format string, v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("INFO", fmt.Sprintf(format, v...)))
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Error(v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("ERROR", fmt.Sprint(v...)))
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Errorf(format string, v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("ERROR", fmt.Sprintf(format, v...)))
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Warning(v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("WARN", fmt.Sprint(v...)))
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Warningf(format string, v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("WARN", fmt.Sprintf(format, v...)))
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Fatal(v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("FATAL", fmt.Sprint(v...)))
 | |
| 	os.Exit(1)
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Fatalf(format string, v ...interface{}) {
 | |
| 	_ = l.Output(calldepth, header("FATAL", fmt.Sprintf(format, v...)))
 | |
| 	os.Exit(1)
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Panic(v ...interface{}) {
 | |
| 	l.Logger.Panic(v...)
 | |
| }
 | |
| 
 | |
| func (l *DefaultLogger) Panicf(format string, v ...interface{}) {
 | |
| 	l.Logger.Panicf(format, v...)
 | |
| }
 | |
| 
 | |
| func header(lvl, msg string) string {
 | |
| 	return fmt.Sprintf("%s: %s", lvl, msg)
 | |
| }
 |