fiberlog.go — fiber Source File
Architecture documentation for fiberlog.go, a go file in the fiber codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR f33cb7b9_7c00_1e20_4ffa_4a54e655699b["fiberlog.go"] cc7104af_aece_1fe5_3985_791c7f34910c["context"] f33cb7b9_7c00_1e20_4ffa_4a54e655699b --> cc7104af_aece_1fe5_3985_791c7f34910c style f33cb7b9_7c00_1e20_4ffa_4a54e655699b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
package log
import (
"context"
"io"
)
// Fatal calls the default logger's Fatal method and then os.Exit(1).
func Fatal(v ...any) {
logger.Fatal(v...)
}
// Error calls the default logger's Error method.
func Error(v ...any) {
logger.Error(v...)
}
// Warn calls the default logger's Warn method.
func Warn(v ...any) {
logger.Warn(v...)
}
// Info calls the default logger's Info method.
func Info(v ...any) {
logger.Info(v...)
}
// Debug calls the default logger's Debug method.
func Debug(v ...any) {
logger.Debug(v...)
}
// Trace calls the default logger's Trace method.
func Trace(v ...any) {
logger.Trace(v...)
}
// Panic calls the default logger's Panic method.
func Panic(v ...any) {
logger.Panic(v...)
}
// Fatalf calls the default logger's Fatalf method and then os.Exit(1).
func Fatalf(format string, v ...any) {
logger.Fatalf(format, v...)
}
// Errorf calls the default logger's Errorf method.
func Errorf(format string, v ...any) {
logger.Errorf(format, v...)
}
// Warnf calls the default logger's Warnf method.
func Warnf(format string, v ...any) {
logger.Warnf(format, v...)
}
// Infof calls the default logger's Infof method.
func Infof(format string, v ...any) {
logger.Infof(format, v...)
// ... (84 more lines)
Domain
Subdomains
Functions
Dependencies
- context
Source
Frequently Asked Questions
What does fiberlog.go do?
fiberlog.go is a source file in the fiber codebase, written in go. It belongs to the FiberCore domain, Routing subdomain.
What functions are defined in fiberlog.go?
fiberlog.go defines 25 function(s): Debug, Debugf, Debugw, Error, Errorf, Errorw, Fatal, Fatalf, Fatalw, Info, and 15 more.
What does fiberlog.go depend on?
fiberlog.go imports 1 module(s): context.
Where is fiberlog.go in the architecture?
fiberlog.go is located at log/fiberlog.go (domain: FiberCore, subdomain: Routing, directory: log).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free