Multi diag tools
Static Public Member Functions | List of all members
Mdt::DeployUtils::Console Class Reference

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.
 

Detailed Description

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:

Console::info(1) << "Starting processing ...";

This message will be displayed with obove configuration.

Console::info(3) << " Format of file" << someFile << ": " << someFormat;

This message will not be displayed with above configuration.

Definition at line 54 of file Console.h.

Member Function Documentation

ConsoleStream Mdt::DeployUtils::Console::info ( int  minlevel)
static

Display a information.

minlevel is the minimum level required so that the message is diplayed.

Precondition
minlevel must be >= 0

Definition at line 35 of file Console.cpp.

void Mdt::DeployUtils::Console::setLevel ( int  level)
static

Set level.

Precondition
level must be >= 0

Definition at line 28 of file Console.cpp.


The documentation for this class was generated from the following files: