Back to home page

OSCL-LXR

 
 

    


0001 /* ******************************************************************
0002  * debug
0003  * Part of FSE library
0004  * Copyright (c) Yann Collet, Facebook, Inc.
0005  *
0006  * You can contact the author at :
0007  * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy
0008  *
0009  * This source code is licensed under both the BSD-style license (found in the
0010  * LICENSE file in the root directory of this source tree) and the GPLv2 (found
0011  * in the COPYING file in the root directory of this source tree).
0012  * You may select, at your option, one of the above-listed licenses.
0013 ****************************************************************** */
0014 
0015 
0016 /*
0017  * This module only hosts one global variable
0018  * which can be used to dynamically influence the verbosity of traces,
0019  * such as DEBUGLOG and RAWLOG
0020  */
0021 
0022 #include "debug.h"
0023 
0024 int g_debuglevel = DEBUGLEVEL;