10f743729SConrad Meyer /* ****************************************************************** 2*37f1f268SConrad Meyer * debug 3*37f1f268SConrad Meyer * Part of FSE library 4*37f1f268SConrad Meyer * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. 5*37f1f268SConrad Meyer * 6*37f1f268SConrad Meyer * You can contact the author at : 7*37f1f268SConrad Meyer * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy 8*37f1f268SConrad Meyer * 9*37f1f268SConrad Meyer * This source code is licensed under both the BSD-style license (found in the 10*37f1f268SConrad Meyer * LICENSE file in the root directory of this source tree) and the GPLv2 (found 11*37f1f268SConrad Meyer * in the COPYING file in the root directory of this source tree). 12*37f1f268SConrad Meyer * You may select, at your option, one of the above-listed licenses. 130f743729SConrad Meyer ****************************************************************** */ 140f743729SConrad Meyer 150f743729SConrad Meyer 160f743729SConrad Meyer /* 170f743729SConrad Meyer * This module only hosts one global variable 180f743729SConrad Meyer * which can be used to dynamically influence the verbosity of traces, 190f743729SConrad Meyer * such as DEBUGLOG and RAWLOG 200f743729SConrad Meyer */ 210f743729SConrad Meyer 220f743729SConrad Meyer #include "debug.h" 230f743729SConrad Meyer 240f743729SConrad Meyer int g_debuglevel = DEBUGLEVEL; 25