vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Enum LogLevel

Specifies the log level for a particular log message.

enum LogLevel : int { ... }

Enum members

NameDescription
critical Error that severely influences the execution of the application
debug_ Developer information useful for algorithm debugging
debugV Developer information useful for algorithm debugging - for verbose output
diagnostic Extended user information (e.g. for more detailed error information)
error Normal error that is handled gracefully
fatal Error that forces the application to terminate
info Informational message for normal user education
none Special value used to indicate no logging when set as the minimum log level
trace Developer information for locating events when no useful stack traces are available
verbose1 Alias for diagnostic messages
verbose2 Alias for debug messages
verbose3 Alias for verbose debug messages
verbose4 Alias for trace messages
warn Unexpected condition that could indicate an error but has no direct consequences
Authors

Sönke Ludwig

Copyright

© 2012-2014 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.