Skip to content

kutogroup/log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 

Repository files navigation

goprint

GoLang log API You can print any variables (string, struct, slice, map, ptr and more)

Example:

package main

import (
	"github.com/MouseSun/log"
)

type TestStruct1 struct {
	Id    int32
	Value string
}

type TestStruct struct {
	Id    int32
	Value string
	St    TestStruct1
}

func main() {
	test := TestStruct{1, "hello struct", TestStruct1{2, "hello struct2"}}
	log.O("test tag", test)
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages