blob: 9cb75cce29aa9c2f97e2c1aafd0c6b2dfda2c0fb [file] [log] [blame]
// Copyright 2020 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.
fn main() {
fuchsia_syslog::init().expect("initializing logging");
log::warn!("my warn message.");
log::error!("my error message.");
}