MCPcopy Create free account
hub / github.com/KingOfBugbounty/enumrust / tool_failed

Method tool_failed

src/progress.rs:167–177  ·  view source on GitHub ↗
(&self, tool_name: &str, error: &str, progress: f32)

Source from the content-addressed store, hash-verified

165 }
166
167 pub fn tool_failed(&self, tool_name: &str, error: &str, progress: f32) {
168 self.add_event(
169 EventType::ToolFailed {
170 tool_name: tool_name.to_string(),
171 error: error.to_string(),
172 },
173 format!("❌ {} falhou: {}", tool_name, error),
174 progress,
175 None,
176 );
177 }
178
179 pub fn data_found(&self, data_type: &str, count: usize, progress: f32) {
180 self.add_event(

Callers 1

process_domain_implFunction · 0.80

Calls 1

add_eventMethod · 0.80

Tested by

no test coverage detected