From 97ab23d990f6a5f2c06d9fbfd4d8d75485c3c62f Mon Sep 17 00:00:00 2001 From: Reza Date: Tue, 17 Dec 2024 04:35:07 +0100 Subject: [PATCH] validation doc --- README.MD | 2 +- docs/log.md | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 docs/log.md diff --git a/README.MD b/README.MD index 337a315..6ff6f61 100644 --- a/README.MD +++ b/README.MD @@ -27,7 +27,7 @@ With EVO Framework, you can focus on your programming logic and rapidly develop - [CURL](docs/curl.md) - [Build](docs/build.md) - [Args](docs/args.md) -- [Logging](storage_interface.md) +- [Logging](docs/log.md) - [Concurrency Patterns](storage_interface.md) - [STract configuration language](storage_interface.md) - [Local Files](storage_interface.md) diff --git a/docs/log.md b/docs/log.md new file mode 100644 index 0000000..7892fe3 --- /dev/null +++ b/docs/log.md @@ -0,0 +1,144 @@ +# Logging Library + +This logging library provides a structured and customizable logging system for Go applications. You can easily log messages with different severity levels, customize output methods, and define new logging behaviors. + +## Table of Contents + +1. [How to Call Log Functions](#how-to-call-log-functions) +2. [How to Change Log Level](#how-to-change-log-level) +3. [How to Implement New Logging Methods and Attach Them](#how-to-implement-new-logging-methods-and-attach-them) +4. [How to Define a New StdLog Function and Set It as Default Logger](#how-to-define-a-new-stdlog-function-and-set-it-as-default-logger) + +--- + +## 1. How to Call Log Functions + +To log messages, use any of the provided log functions based on the severity level: + +- `Fatal`, `FatalF`, `Fatalf` +- `Panic`, `PanicF`, `Panicf` +- `Critical`, `CriticalF`, `Criticalf` +- `Error`, `ErrorF`, `Errorf` +- `Warning`, `WarningF`, `Warningf` +- `Notice`, `NoticeF`, `Noticef` +- `Info`, `InfoF`, `Infof` +- `Debug`, `DebugF`, `Debugf` + +Each function accepts a message and optional parameters for formatting. + +### Example: +```go +package main +import "github.com/getevo/evo/v2/lib/log" + +func main() { + log.Info("Application started") + log.WarningF("Config file %s not found, using default values", "config.yaml") + log.Error("Failed to connect to database") +} +``` + +--- + +## 2. How to Change Log Level + +You can control the minimum severity level to log using `SetLevel`. + +### Available Levels: +- `log.CriticalLevel` +- `log.ErrorLevel` +- `log.WarningLevel` +- `log.NoticeLevel` +- `log.InfoLevel` +- `log.DebugLevel` + +### Example: +```go +package main +import "github.com/getevo/evo/v2/lib/log" + +func main() { + log.SetLevel(log.DebugLevel) // Set to debug level + log.Info("This is an info message") + log.Debug("This is a debug message") +} +``` + +By default, the log level is set to `WarningLevel`. + +--- + +## 3. How to Implement New Logging Methods and Attach Them + +You can implement a custom log output method and attach it to the library using `AddWriter`. A writer function receives a `log.Entry` and processes it. + +### Example: Log to a File (Single Instance, Concurrent Safe) +```go +package main +import ( + "github.com/getevo/evo/v2/lib/log" + "os" + "sync" + "fmt" +) + +var ( + file *os.File + fileOnce sync.Once + fileLock sync.Mutex +) + +func FileWriter(logEntry *log.Entry) { + // Ensure file is opened only once + fileOnce.Do(func() { + var err error + file, err = os.OpenFile("app.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) + if err != nil { + panic("Failed to open log file") + } + }) + + fileLock.Lock() // Ensure concurrent writes are safe + defer fileLock.Unlock() + + fmt.Fprintf(file, "%s [%s] %s:%d %s\n", logEntry.Date.Format("15:04:05"), logEntry.Level, logEntry.File, logEntry.Line, logEntry.Message) +} + +func main() { + log.AddWriter(FileWriter) // Attach custom writer + log.Info("This will be written to the file") + log.Warning("This is a warning message") +} +``` + +This version ensures: +1. The log file is opened only once per application lifecycle. +2. Writes to the file are synchronized, making it thread-safe for concurrent logging. + +--- + +## 4. How to Define a New StdLog Function and Set It as Default Logger + +The library allows replacing the default `StdWriter` with a custom function using `SetWriters`. This function processes log entries before outputting them. + +### Example: Define a New StdLog +```go +package main +import ( + "github.com/getevo/evo/v2/lib/log" + "fmt" +) + +func MyCustomStdWriter(entry *log.Entry) { + fmt.Printf("[%s] %s (%s:%d) -> %s\n", entry.Date.Format("2006-01-02 15:04:05"), entry.Level, entry.File, entry.Line, entry.Message) +} + +func main() { + log.SetWriters(MyCustomStdWriter) // Replace default writer + + log.Info("Using custom standard logger") + log.Error("This is an error message") +} +``` + +With `SetWriters`, you can completely replace the behavior of the logger.