/* ******************************************************************1* debug2* Part of FSE library3* Copyright (c) Meta Platforms, Inc. and affiliates.4*5* You can contact the author at :6* - Source repository : https://github.com/Cyan4973/FiniteStateEntropy7*8* This source code is licensed under both the BSD-style license (found in the9* LICENSE file in the root directory of this source tree) and the GPLv2 (found10* in the COPYING file in the root directory of this source tree).11* You may select, at your option, one of the above-listed licenses.12****************************************************************** */131415/*16* This module only hosts one global variable17* which can be used to dynamically influence the verbosity of traces,18* such as DEBUGLOG and RAWLOG19*/2021#include "debug.h"2223#if !defined(ZSTD_LINUX_KERNEL) || (DEBUGLEVEL>=2)24/* We only use this when DEBUGLEVEL>=2, but we get -Werror=pedantic errors if a25* translation unit is empty. So remove this from Linux kernel builds, but26* otherwise just leave it in.27*/28int g_debuglevel = DEBUGLEVEL;29#endif303132