/* ******************************************************************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"2223int g_debuglevel = DEBUGLEVEL;242526