Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
ityuany committed Jul 21, 2024
1 parent d929dad commit ce7fdd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/snm_shim/src/get_node_bin_dir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ use std::env::current_dir;
use snm_atom::{atom::AtomTrait as _, node_atom::NodeAtom};
use snm_config::parse_snm_config;
use snm_utils::snm_error::SnmError;
use tracing::instrument;
use tracing::{instrument, Level};

use crate::ensure_binary_path;

#[instrument(level = "trace", ret)]
#[instrument(level = Level::TRACE, ret)]
pub async fn get_node_bin_dir() -> Result<String, SnmError> {
let dir = current_dir()?;

Expand Down

0 comments on commit ce7fdd5

Please sign in to comment.