15 lines
421 B
C
15 lines
421 B
C
// Copyright 2020 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef MACROS_H_
|
|
#define MACROS_H_
|
|
|
|
#include "base/logging.h"
|
|
|
|
#define DVLOGF(level) DVLOG(level) << __func__ << "(): "
|
|
#define VLOGF(level) VLOG(level) << __func__ << "(): "
|
|
#define VPLOGF(level) VPLOG(level) << __func__ << "(): "
|
|
|
|
#endif // MACROS_H_
|