You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
import (
logging "github.com/kashifkhan0771/utils/logging""os"
)
funcmain() {
// Create a new logger with prefix "MyApp", minimum level INFO, and output to stdoutlogger:=logging.NewLogger("MyApp", logging.INFO, os.Stdout)
// Log messages of different levelslogger.Debug("This is a debug message.") // Ignored because minLevel is INFOlogger.Info("Application started.") // Printed with blue colorlogger.Warn("Low disk space.") // Printed with yellow colorlogger.Error("Failed to connect to DB.") // Printed with red color
}
Output:
[2025-01-09 12:34:56] [INFO] MyApp: Application started.
[2025-01-09 12:34:56] [WARN] MyApp: Low disk space.
[2025-01-09 12:34:56] [ERROR] MyApp: Failed to connect to DB.
Log without colors (useful for plain text logs)
package main
import (
logging "github.com/kashifkhan0771/utils/logging""os"
)
funcmain() {
// Create a logger and disable colorslogger:=logging.NewLogger("MyApp", logging.DEBUG, os.Stdout)
logger.disableColors=true// Log messages of different levelslogger.Debug("Debugging without colors.")
logger.Info("Information without colors.")
logger.Warn("Warning without colors.")
logger.Error("Error without colors.")
}
Output:
[2025-01-09 12:34:56] [DEBUG] MyApp: Debugging without colors.
[2025-01-09 12:34:56] [INFO] MyApp: Information without colors.
[2025-01-09 12:34:56] [WARN] MyApp: Warning without colors.
[2025-01-09 12:34:56] [ERROR] MyApp: Error without colors.
Log messages to a file
package main
import (
logging "github.com/kashifkhan0771/utils/logging""os"
)
funcmain() {
// Open a log file for writingfile, err:=os.Create("app.log")
iferr!=nil {
panic(err)
}
deferfile.Close()
// Create a logger with file outputlogger:=logging.NewLogger("MyApp", logging.DEBUG, file)
// Log messageslogger.Debug("Writing debug logs to file.")
logger.Info("Application log stored in file.")
logger.Warn("This is a warning.")
logger.Error("This is an error.")
}
Output (in app.log file):
[2025-01-09 12:34:56] [DEBUG] MyApp: Writing debug logs to file.
[2025-01-09 12:34:56] [INFO] MyApp: Application log stored in file.
[2025-01-09 12:34:56] [WARN] MyApp: This is a warning.
[2025-01-09 12:34:56] [ERROR] MyApp: This is an error.
Filter logs by minimum log level
package main
import (
logging "github.com/kashifkhan0771/utils/logging""os"
)
funcmain() {
// Create a logger with minimum level WARNlogger:=logging.NewLogger("MyApp", logging.WARN, os.Stdout)
// Log messageslogger.Debug("This is a debug message.") // Ignoredlogger.Info("This is an info message.") // Ignoredlogger.Warn("This is a warning.") // Printedlogger.Error("This is an error.") // Printed
}
Output:
[2025-01-09 12:34:56] [WARN] MyApp: This is a warning.
[2025-01-09 12:34:56] [ERROR] MyApp: This is an error.
Customize log prefixes
package main
import (
logging "github.com/kashifkhan0771/utils/logging""os"
)
funcmain() {
// Create a logger with a custom prefixlogger:=logging.NewLogger("CustomPrefix", logging.INFO, os.Stdout)
// Log messageslogger.Info("This message has a custom prefix.")
}
Output:
[2025-01-09 12:34:56] [INFO] CustomPrefix: This message has a custom prefix.