debug.h revision a3d386ea56ef53bb070b87ea7c28e103c5a53e45
1/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _FASTBOOTD_DEBUG_H_
18#define _FASTBOOTD_DEBUG_H_
19
20#include <stdio.h>
21
22#include <cutils/klog.h>
23
24#define ERR 0
25#define WARN 1
26#define INFO 2
27#define VERBOSE 3
28#define DEBUG 4
29
30extern unsigned int debug_level;
31
32//#define DLOG(fmt, ...) printf(fmt, ##__VA_ARGS__)
33#define DLOG(fmt, ...) KLOG_INFO("fastbootd", fmt, ##__VA_ARGS__)
34
35#define D(level, fmt, ...) \
36    do { \
37        if (debug_level == level || debug_level > level) { \
38            DLOG("%s:%d " fmt "\n", __BASE_FILE__, __LINE__, ##__VA_ARGS__); \
39        } \
40    } while (0)
41
42#endif
43