source: XIOS/dev/dev_olga/src/extern/src_netcdf4/oclog.h @ 1022

Last change on this file since 1022 was 1022, checked in by mhnguyen, 7 years ago
File size: 467 bytes
Line 
1/* Copyright 2009, UCAR/Unidata and OPeNDAP, Inc.
2   See the COPYRIGHT file for more information. */
3
4#ifndef OCLOG_H
5#define OCLOG_H
6
7#define LOGNOTE 0
8#define LOGWARN 1
9#define LOGERR 2
10#define LOGDBG 3
11
12extern void oc_loginit(void);
13extern void oc_setlogging(int tf);
14extern void oc_logopen(const char* file);
15extern void oc_logclose(void);
16
17extern void oc_log(int tag, const char* fmt, ...);
18extern void oc_logtext(int tag, const char* text);
19
20#endif /*OCLOG_H*/
Note: See TracBrowser for help on using the repository browser.