blob: 1a34efa2638a6f668b26aadd0fc3342678833314 [file] [log] [blame] [edit]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <ddk/debug.h>
#define logf(level, args...) \
do { \
zxlogf(level, "btintel: " args); \
} while (false)
#define errorf(args...) logf(ERROR, args)
#define infof(args...) logf(INFO, args)
#define tracef(args...) logf(TRACE, args)
#define spewf(args...) logf(SPEW, args)