Multi diag tools
|
Display messages to the console. More...
#include <Console.h>
Static Public Member Functions | |
static void | setLevel (int level) |
Set level. More... | |
static int | level () |
Get level. | |
static ConsoleStream | info (int minlevel) |
Display a information. More... | |
static ConsoleStream | error () |
Display a error. | |
Display messages to the console.
Console can be used to display mesages to the user in a console application. It provides a basic filter mechanisme, based on levels.
In the main:
This configures Console to output all messages that are at least of level 2 (messages of level 0, 1 and 2 are diplayed, messages with greater levels are not).
Somewhere in the code:
This message will be displayed with obove configuration.
This message will not be displayed with above configuration.
|
static |
Display a information.
minlevel is the minimum level required so that the message is diplayed.
Definition at line 35 of file Console.cpp.
|
static |