|  |  5.3.6 printlevel 
See
 dbprint;
 int;
 voice.Type:int
Purpose:sets the debug level for dbprint.
Ifprintlevel>=voicethendbprintis equivalent toprint, otherwise nothing is printed.Note:See  Procedures in a library, for a small example about how this
is used for the display of comments while procedures are executed.
Example:|  |   voice;
==> 1
  printlevel=0;
  dbprint(1);
  printlevel=voice;
  dbprint(1);
==> 1
 | 
 |