e1.2.0 Heartbeat feature added.

This commit is contained in:
2025-04-23 11:52:57 -04:00
parent 0ddfa2c533
commit bfed212f40
14 changed files with 1150 additions and 720 deletions

View File

@ -18,7 +18,7 @@ var tomlContent = `
# Example simple_config.toml
[logging]
level = -4 # Debug
directory = "./simple_logs"
directory = "./logs"
format = "txt"
extension = "log"
show_timestamp = true
@ -113,5 +113,5 @@ func main() {
// NO time.Sleep needed here - log.Shutdown waits.
fmt.Println("--- Example Finished ---")
fmt.Printf("Check log files in './simple_logs' and the saved config '%s'.\n", configFile)
fmt.Printf("Check log files in './logs' and the saved config '%s'.\n", configFile)
}