]> rtime.felk.cvut.cz Git - orte.git/blob - orte/liborte/ORTEVerbosity.c
f8e2808eb7eae8a948d211abe772272f6fb96ae0
[orte.git] / orte / liborte / ORTEVerbosity.c
1 /*
2  *  $Id: ORTEVerbosity.c,v 0.0.0.1  2003/08/21 
3  *
4  *  DEBUG:  section 27                  Verbosity function                  
5  *  AUTHOR: Petr Smolik                 petr.smolik@wo.cz
6  *
7  *  ORTE - OCERA Real-Time Ethernet     http://www.ocera.org/
8  *  --------------------------------------------------------------------
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *  
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *  
20  */ 
21
22 #include "orte.h"
23
24 /*****************************************************************************/
25 void 
26 ORTEVerbositySetOptions(const char *options) {
27   debug_options(options);
28 }
29
30 /*****************************************************************************/
31 void 
32 ORTEVerbositySetLogFile(const char *logfile) {
33   debug_open_log(logfile);
34 }
35
36
37
38
39