1*a28cd43dSSascha Wildner /* ****************************************************************** 2*a28cd43dSSascha Wildner * debug 3*a28cd43dSSascha Wildner * Part of FSE library 4*a28cd43dSSascha Wildner * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. 5*a28cd43dSSascha Wildner * 6*a28cd43dSSascha Wildner * You can contact the author at : 7*a28cd43dSSascha Wildner * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy 8*a28cd43dSSascha Wildner * 9*a28cd43dSSascha Wildner * This source code is licensed under both the BSD-style license (found in the 10*a28cd43dSSascha Wildner * LICENSE file in the root directory of this source tree) and the GPLv2 (found 11*a28cd43dSSascha Wildner * in the COPYING file in the root directory of this source tree). 12*a28cd43dSSascha Wildner * You may select, at your option, one of the above-listed licenses. 13*a28cd43dSSascha Wildner ****************************************************************** */ 14*a28cd43dSSascha Wildner 15*a28cd43dSSascha Wildner 16*a28cd43dSSascha Wildner /* 17*a28cd43dSSascha Wildner * This module only hosts one global variable 18*a28cd43dSSascha Wildner * which can be used to dynamically influence the verbosity of traces, 19*a28cd43dSSascha Wildner * such as DEBUGLOG and RAWLOG 20*a28cd43dSSascha Wildner */ 21*a28cd43dSSascha Wildner 22*a28cd43dSSascha Wildner #include "debug.h" 23*a28cd43dSSascha Wildner 24*a28cd43dSSascha Wildner int g_debuglevel = DEBUGLEVEL; 25