blob: 7f624934d16c4193f744c27e880c22e01262d6d8 [file] [log] [blame]
// 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)
closed protocol Diagnostics {
/// Requests that the device produces debugging information in the system
/// logs.
///
/// The call returns once device debug information has been produced.
strict LogDebugInfoToSyslog() -> ();
};