package
0.0.0-20241018223127-a062be16fda2
Repository: https://github.com/activestate/cli.git
Documentation: pkg.go.dev

# Functions

BridgeStdLog bridges all messages written using the standard library's log.Print* and makes them output through this logger, at a given level.
No description provided by the author
Output a CRITICAL level message while showing a stack trace This should be called sparingly, as multilog.Critical() is preferred.
No description provided by the author
Output debug logging messages.
Output ERROR level messages This should be used sparingly, as multilog.Error() is preferred.
Same as Error() but without a stacktrace.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
output INFO level messages.
Output NOTICE level messages.
Raise a PANIC while writing the stack trace to the log.
ReadTail returns as a string the last TailSize bytes written by this logger.
Set the current handler of the library.
Set the logging level.
Set a minimal level for loggin, setting all levels higher than this level as well.
Set minimal level by string, useful for config files and command line arguments.
Set the output writer.
StartRotateLogTimer starts log rotation on a timer and returns a function that should be called to stop it.
Output WARNING level messages.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
default setting - all besides debug.
No description provided by the author
notice is like info but for really important stuff ;).
setting for errors only.
TailSize specifies the number of logged bytes to keep for use with Tail.
No description provided by the author
No description provided by the author

# Variables

No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author

# Interfaces

A formatting interface- it is responsible of taking the arguments and composing a message.
a pluggable logger interface.

# Type aliases

Logger describes a logging function, like Debug, Error, Warning, etc.