Sign in
fuchsia
/
fuchsia
/
HEAD
/
.
/
src
/
sys
/
test_manager
/
tests
/
diagnostics_tests
/
logger.rs
blob: d866a3c82ec88a7f264ea867a24696e340d4dd7e [
file
] [
log
] [
blame
]
// Copyright 2024 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.
use
log
::
info
;
#[
fuchsia
::
test
]
fn
log
()
{
info
!(
"I'm a info log from a test"
);
}