blob: 8a8d3fae26458ce9f33853ee1f09181efd08db7f [file] [log] [blame]
// 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)