blob: e0500067f219b0ee528feb2ff1c02c7241d05160 [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");
println!("writing to stdout");
eprintln!("writing to stderr");
log::info!("my info message.");
println!("writing second message to stdout");
log::warn!("my warn message.");
println!("This component will exit now.");
}