summaryrefslogtreecommitdiff
path: root/include/log.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-02-22 08:42:19 +0100
committerMarcel Holtmann <marcel@holtmann.org>2008-02-22 08:42:19 +0100
commitdafd72419a43e2b5a0243d4b61372ca83747883f (patch)
tree387ba3c7de75ba30e85e7d6903751c063fb53e83 /include/log.h
parent84deb674a0c3511dd4eee17d47ca07a4f51ba396 (diff)
downloadconnman-dafd72419a43e2b5a0243d4b61372ca83747883f.tar.gz
connman-dafd72419a43e2b5a0243d4b61372ca83747883f.tar.bz2
connman-dafd72419a43e2b5a0243d4b61372ca83747883f.zip
Add logging infrastructure
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h
new file mode 100644
index 00000000..e87e38ad
--- /dev/null
+++ b/include/log.h
@@ -0,0 +1,39 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __CONNMAN_LOG_H
+#define __CONNMAN_LOG_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define DBG(fmt, arg...) connman_debug(fmt, ## arg)
+
+extern void connman_info(const char *format, ...);
+extern void connman_error(const char *format, ...);
+extern void connman_debug(const char *format, ...);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_LOG_H */