Skip to content

Commit 17cb0e0

Browse files
committed
removes debug log
1 parent 21d2239 commit 17cb0e0

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

crates/chat-cli/src/cli/agent.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,10 +449,8 @@ impl Agents {
449449

450450
/// Returns a label to describe the permission status for a given tool.
451451
pub fn display_label(&self, tool_name: &str, origin: &ToolOrigin) -> String {
452-
error!("## perm: name: display_label called");
453452
let tool_trusted = self.get_active().is_some_and(|a| {
454453
a.allowed_tools.iter().any(|name| {
455-
error!("## perm: name: {name}, tool_name: {tool_name}");
456454
// Here the tool names can take the following forms:
457455
// - @{server_name}{delimiter}{tool_name}
458456
// - native_tool_name

crates/chat-cli/src/cli/chat/cli/tools.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ impl ToolsArgs {
110110
})
111111
.collect::<BTreeSet<_>>();
112112

113-
tracing::error!("## perm: command called");
114113
let to_display = sorted_tools.iter().fold(String::new(), |mut acc, tool_name| {
115114
let width = longest - tool_name.len() + 4;
116115
acc.push_str(

0 commit comments

Comments
 (0)