Home | History | Annotate | Download | only in compat
      1 // Copyright 2015 The Chromium OS Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROMIUMOS_WIDE_PROFILING_COMPAT_LOG_LEVEL_H_
      6 #define CHROMIUMOS_WIDE_PROFILING_COMPAT_LOG_LEVEL_H_
      7 
      8 namespace quipper {
      9 
     10 // Specify a verbosity level for logging functions. Higher values mean greater
     11 // verbosity. VLOG() with level equal to or greater than this one will be
     12 // printed. To filter LOG(INFO), LOG(WARNING), and LOG(ERROR), use negative
     13 // values.
     14 void SetVerbosityLevel(int level);
     15 
     16 }  // namespace quipper
     17 
     18 #endif  // CHROMIUMOS_WIDE_PROFILING_COMPAT_LOG_LEVEL_H_
     19