1 2 3 4 5 6 7 8 9 10 11 12 13
package internal import ( "hakurei.app/container" "hakurei.app/internal/hlog" "hakurei.app/system" ) func InstallOutput(verbose bool) { hlog.Store(verbose) container.SetOutput(hlog.Output{}) system.SetOutput(hlog.Output{}) }