// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html.3//4// Copyright (C) 2018 Intel Corporation567#ifndef __OPENCV_GAPI_LOGGER_HPP__8#define __OPENCV_GAPI_LOGGER_HPP__910#if !defined(GAPI_STANDALONE)11# include "opencv2/core/cvdef.h"12# include "opencv2/core/utils/logger.hpp"13# define GAPI_LOG_INFO(tag, ...) CV_LOG_INFO(tag, __VA_ARGS__)14# define GAPI_LOG_WARNING(tag, ...) CV_LOG_WARNING(tag, __VA_ARGS__)15#else16# define GAPI_LOG_INFO(tag, ...)17# define GAPI_LOG_WARNING(tag, ...)18#endif // !defined(GAPI_STANDALONE)192021#endif // __OPENCV_GAPI_LOGGER_HPP__222324