Skip to content
Enum

LogLevel

Controls how much information Mediabunny prints to the console. Higher levels include all lower levels.

ts
enum LogLevel {
	/** Nothing is printed to the console. */
	Silent = 0,
	/** Only errors are printed. */
	Errors = 1,
	/** Errors and warnings are printed. */
	Warnings = 2,
	/** Errors, warnings, and informational messages are printed. */
	Info = 3,
}

Released under the Mozilla Public License 2.0.