[M67 Dev][API] Switch ewk_export.h with tizen.h
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / public / ewk_log_internal.h
1 // Copyright 2013 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6  * @file    ewk_log_internal.h
7  * @brief   flags related to logging functions.
8  */
9
10 #ifndef ewk_log_internal_h
11 #define ewk_log_internal_h
12
13 #include <eina_log.h>
14
15 extern int _ewk_log_dom;
16
17 #define CRITICAL(...) EINA_LOG_DOM_CRIT(_ewk_log_dom, __VA_ARGS__)
18 #define ERR(...) EINA_LOG_DOM_ERR(_ewk_log_dom, __VA_ARGS__)
19 #define WARN(...) EINA_LOG_DOM_WARN(_ewk_log_dom, __VA_ARGS__)
20 #define INFO(...) EINA_LOG_DOM_INFO(_ewk_log_dom, __VA_ARGS__)
21 #define DBG(...) EINA_LOG_DOM_DBG(_ewk_log_dom, __VA_ARGS__)
22
23 #endif //ewk_log_internal_h