/**
 * Copyright (C) 2011 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Mobile Communication Division,
 * Digital Media & Communications Business, Samsung Electronics Co., Ltd.
 *
 * This software and its documentation are confidential and proprietary
 * information of Samsung Electronics Co., Ltd.  No part of the software and
 * documents may be copied, reproduced, transmitted, translated, or reduced to
 * any electronic medium or machine-readable form without the prior written
 * consent of Samsung Electronics.
 *
 * Samsung Electronics makes no representations with respect to the contents,
 * and assumes no responsibility for any errors that might appear in the
 * software and documents. This publication and the contents hereof are subject
 * to change without notice.
 *
 */

#ifndef __DBG_H__
#define __DBG_H__

//#include "TlApi/TlApiLogging.h"
#include <stdbool.h>

//#undef TR_DEBUG
#define TR_DEBUG

#define tl_err(fmt, args...)	do {printf("[Error]:tlwvdrm:: "); printf(fmt, ## args);} while (false)

#ifdef TR_DEBUG
#define tl_dbg(fmt, args...)	do {printf("tlwvdrm:: "); printf(fmt, ## args);} while (false)
#else
#define tl_dbg(fmt, args...)
#endif

#endif /* !__DBG_H__ */
