package nstd

import (
	
)

// Different from log.Print, Log returns a true bool value,
// so that it can be used in
//
//	_ = Debug && nstd.Log(...)
func ( ...any) bool {
	log.Print(...)
	return true
}

// Different from log.Printf, Logf returns a true bool value,
// so that it can be used in
//
//	_ = Debug && nstd.Logf(...)
func ( string,  ...any) bool {
	log.Printf(, ...)
	return true
}

// Different from log.Println, Logln returns a true bool value,
// so that it can be used in
//
//	_ = Debug && nstd.Logln(...)
func ( ...any) bool {
	log.Println(...)
	return true
}