Skip to content

Utility functions

set_verbosity

Set how much logging is generated my XDiag to monitor the progress and behaviour of the code. There are three verbosity levels that can be set:

  • 0: no output at all
  • 1: some output
  • 2: detailed output

This can be useful, e.g. to monitor the progress of an iterative algorithm

void set_verbosity(int64_t level);
set_verbosity(level::Int64)

say_hello

Prints a nice welcome message containing the version number and git commit used.

void say_hello()
say_hello()

If say_hello is too much flower power for you, one can also just have a boring print-out of the version number using this function.

void print_version()
print_version()