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