MCPcopy
hub / github.com/wailsapp/wails / String

Method String

v2/pkg/logger/logger.go:45–60  ·  view source on GitHub ↗

String returns the string representation of the LogLevel

()

Source from the content-addressed store, hash-verified

43
44// String returns the string representation of the LogLevel
45func (l LogLevel) String() string {
46 switch l {
47 case TRACE:
48 return "trace"
49 case DEBUG:
50 return "debug"
51 case INFO:
52 return "info"
53 case WARNING:
54 return "warning"
55 case ERROR:
56 return "error"
57 default:
58 return "debug"
59 }
60}
61
62// Logger specifies the methods required to attach
63// a logger to a Wails application

Callers 14

StringifyFunction · 0.45
parser.goFile · 0.45
GetMimetypeFunction · 0.45
StartsAtLoginFunction · 0.45
updateToVersionFunction · 0.45
initProjectFunction · 0.45
buildApplicationFunction · 0.45
ProcessMethod · 0.45
SyncGoModFunction · 0.45
killProcFunction · 0.45
ApplicationFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected