logger

package
v2.0.9-core Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 4, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetLogLevelName added in v2.0.8

func GetLogLevelName(level LogLevel) (string, error)

Types

type CloudwatchLogger

type CloudwatchLogger struct {
	// contains filtered or unexported fields
}

CloudwatchLogger - Structure holding API logger internals

func (*CloudwatchLogger) Close

func (l *CloudwatchLogger) Close()

func (*CloudwatchLogger) Debugf

func (l *CloudwatchLogger) Debugf(format string, a ...interface{})

Debugf - Print debug to log, with format string

func (*CloudwatchLogger) Errorf

func (l *CloudwatchLogger) Errorf(format string, a ...interface{})

Errorf - Print error to log, with format string

func (*CloudwatchLogger) GetLogLevel added in v2.0.8

func (l *CloudwatchLogger) GetLogLevel() LogLevel

func (*CloudwatchLogger) Infof

func (l *CloudwatchLogger) Infof(format string, a ...interface{})

Infof - Print info to log, with format string

func (*CloudwatchLogger) Printf

func (l *CloudwatchLogger) Printf(level LogLevel, format string, a ...interface{})

Log enqueues a log message to be written to a log stream.

The log message must be less than 1,048,550 bytes, and the time must not be more than 2 hours in the future, 14 days in the past, or older than the retention period of the log group.

This method is safe for concurrent access by multiple goroutines.

func (*CloudwatchLogger) SetLogLevel added in v2.0.8

func (l *CloudwatchLogger) SetLogLevel(level LogLevel)

type ILogger

type ILogger interface {
	Printf(level LogLevel, format string, a ...interface{})
	Debugf(format string, a ...interface{})
	Infof(format string, a ...interface{})
	Errorf(format string, a ...interface{})
	SetLogLevel(level LogLevel)
	GetLogLevel() LogLevel
}

ILogger - Generic logger interface

func InitCloudWatchLogger

func InitCloudWatchLogger(sess *session.Session, logGroupName string, logStreamName string, logLevel LogLevel, retentionDays int, logIntervalSec time.Duration) (ILogger, error)

InitCloudWatchLogger - initialises the logger, given settings and AWS session

type LogLevel

type LogLevel int

LogLevel - log level type

const (

	// LogDebug - DEBUG log level
	LogDebug LogLevel = iota

	// LogInfo - INFO log level
	LogInfo LogLevel = iota

	// LogError - ERROR log level (does not call os.Exit!)
	LogError LogLevel = iota
)

func GetLogLevel added in v2.0.8

func GetLogLevel(name string) (LogLevel, error)

type NullLogger

type NullLogger struct {
}

NullLogger - For mocking out in tests

func (*NullLogger) Debugf

func (l *NullLogger) Debugf(format string, a ...interface{})

func (*NullLogger) Errorf

func (l *NullLogger) Errorf(format string, a ...interface{})

func (*NullLogger) GetLogLevel added in v2.0.8

func (l *NullLogger) GetLogLevel() LogLevel

func (*NullLogger) Infof

func (l *NullLogger) Infof(format string, a ...interface{})

func (*NullLogger) Printf

func (l *NullLogger) Printf(level LogLevel, format string, a ...interface{})

func (*NullLogger) SetLogLevel added in v2.0.8

func (l *NullLogger) SetLogLevel(level LogLevel)

type StdOutLogger

type StdOutLogger struct {
	// contains filtered or unexported fields
}

StdOutLogger - For mocking out in tests

func (*StdOutLogger) Debugf

func (l *StdOutLogger) Debugf(format string, a ...interface{})

func (*StdOutLogger) Errorf

func (l *StdOutLogger) Errorf(format string, a ...interface{})

func (*StdOutLogger) GetLogLevel added in v2.0.8

func (l *StdOutLogger) GetLogLevel() LogLevel

func (*StdOutLogger) Infof

func (l *StdOutLogger) Infof(format string, a ...interface{})

func (*StdOutLogger) Printf

func (l *StdOutLogger) Printf(level LogLevel, format string, a ...interface{})

func (*StdOutLogger) SetLogLevel added in v2.0.8

func (l *StdOutLogger) SetLogLevel(level LogLevel)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL