blob: 10ef1cab5b941bc7cef3ee33011962eeb78ddfdc [file] [log] [blame]
// Copyright 2021 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.
#[fuchsia::test(
logging_tags = ["error_logging_test"],
logging_minimum_severity = "debug"
)]
async fn log_and_exit() {
tracing::info!("my info message");
tracing::warn!("my warn message");
tracing::error!("my error message");
}