blob: 821a82314893e8b2cf4d036e8dbafb42f21cec70 [file] [log] [blame]
/* Copyright (C) 2007-2008 The Android Open Source Project
**
** This software is licensed under the terms of the GNU General Public
** License version 2, as published by the Free Software Foundation, and
** may be copied, distributed, and modified under those terms.
**
** 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.
*/
#include "android/telephony/debug.h"
#include <stdarg.h>
#include <stdio.h>
bool android_telephony_debug_modem = false;
bool android_telephony_debug_radio = false;
bool android_telephony_debug_socket = false;
void android_telephony_log(const char* fmt, ...) {
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
}