blob: 5b52b7c8bdd3246aa04e131302b42a750f3adb1a [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 = ["logging_test"])]
async fn log_and_exit() {
log::debug!("my debug message");
log::info!("my info message");
log::warn!("my warn message");
}