blob: db420e53e1eebde5b8c471c00f8b4f5d58e8125c [file] [log] [blame] [edit]
// Copyright 2022 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.
library fuchsia.hardware.network;
/// Provides two way communications between device and upper layers to exchange
/// device health information.
@available(added=HEAD)
protocol Diagnostics {
/// Requests that the device produces debugging information in the system
/// logs.
///
/// The call returns once device debug information has been produced.
LogDebugInfoToSyslog() -> ();
};