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