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