1
0
Fork 0
No description
Find a file
2025-12-25 22:17:22 -05:00
examples/basic init: adding source files 2025-12-25 06:54:44 -05:00
lib init: adding source files 2025-12-25 06:54:44 -05:00
std init: adding source files 2025-12-25 06:54:44 -05:00
.gitattributes init: adding .gitignore and .gitattributes files 2025-12-24 07:20:12 -05:00
.gitignore init: adding .gitignore and .gitattributes files 2025-12-24 07:20:12 -05:00
README.md init: adding README.md file 2025-12-25 22:17:22 -05:00

pxnGoLog

Description

This is a custom logger library for GoLang.

(back to top)

Source Code

Git Repo: git.poixson.com/PxnLibs/pxnGoLog

(back to top)

Usage

Import lib anywhere the logging interface is needed, but only import the implementation once, std in this case.

import(
	Log "git.poixson.com/PxnLibs/pxnGoLog/lib"
	_   "git.poixson.com/PxnLibs/pxnGoLog/std"
);

func Main() {
	Log.Info("Logger works");
}

See examples for more examples.

(back to top)

License

AGPL+PXN, see LICENSE

(back to top)