Logging Overview

Vkdispatch includes a logging system for debugging the internal library.

Logging API Reference

class vkdispatch.LogLevel(*values)

An enumeration which represents the log levels.

VERBOSE

All possible logs are printed. Module must be compiled with debug mode enabled to see these logs.

Type:

int

INFO

All release mode logs are printed. Useful for debugging the publicly available module.

Type:

int

WARNING

Only warnings and errors are printed. Default log level.

Type:

int

ERROR

Only errors are printed. Useful for muting annoying warnings that you know are harmless.

Type:

int