starnix_logging/
stubs.rs

1// Copyright 2024 The Fuchsia Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub use inspect_stubs::*;
6
7/// Initialize the inspect contrib library to be able to associate stub calls with process names.
8pub fn register_stub_context_callback() {
9    register_context_name_callback(crate::logging::get_current_leader_command);
10}