Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@deadlium deadlium released this 09 Mar 19:52

Logs Package v1.0.0 Release Notes

We're excited to announce the release of version 1.0.0 of the Logs package! This release introduces enhanced logging functionalities for Go applications, providing different logging levels for improved control over your application's logs.

Features:

Logging Levels: Added support for various logging levels, including INFO, SUCCESS, ERROR, WARN, and DEBUG, each with its corresponding log function.
Colorful Output: Enhanced logging messages with colors for better readability and distinction between different log levels.

Example

package main

import (
	"github.com/yourusername/logs"
)

func main() {
	logs.Info("This is an informational message")
	logs.Success("This is a success message")
	logs.Warn("This is a warning message")
	logs.Debug("This is a debug message")
	logs.Error("This is an error message")
}

For more details on usage and examples, please refer to the README and documentation.

License:
This package is licensed under the MIT License. See the LICENSE file for details.