* Debug levels. Use `--verbose / -v LEVEL' to display only messages

up to the given verbosity levels.  These currently are:

    lvlError = 0, 
    lvlNormal = 5,
    lvlDebug = 10,
    lvlDebugMore = 15

  although only lvlError and lvlDebug are actually used right now.
This commit is contained in:
Eelco Dolstra 2003-07-24 08:53:43 +00:00
parent b75719b984
commit 1a7468a57a
8 changed files with 68 additions and 25 deletions

View file

@ -12,8 +12,7 @@
void realise(FSId id)
{
debug(format("TEST: realising %1%") % (string) id);
Nest nest(true);
Nest nest(lvlDebug, format("TEST: realising %1%") % (string) id);
Slice slice = normaliseFState(id);
realiseSlice(slice);
}