package logging var applicationName = "MyApp" // Sets the application name prefix used in the logoutput. Example: // | ... func SetAppName(name string) { applicationName = name } // Returns the logging prefix name as string. func GetAppName() string { return applicationName }