Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
64c6eb66
Unverified
Commit
64c6eb66
authored
Mar 30, 2026
by
Ameen Patel
Committed by
GitHub
Mar 30, 2026
Browse files
fix: downgrade noisy tool parser INFO logs to DEBUG (#7573)
Signed-off-by:
AmeenP
<
ameenp360@gmail.com
>
parent
0b0879dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/parsers/src/tool_calling/tools.rs
lib/parsers/src/tool_calling/tools.rs
+2
-2
No files found.
lib/parsers/src/tool_calling/tools.rs
View file @
64c6eb66
...
@@ -16,9 +16,9 @@ pub async fn try_tool_call_parse_aggregate(
...
@@ -16,9 +16,9 @@ pub async fn try_tool_call_parse_aggregate(
Option
<
String
>
,
Option
<
String
>
,
)
>
{
)
>
{
if
parser_str
.is_none
()
{
if
parser_str
.is_none
()
{
tracing
::
info
!
(
"No tool parser provided. Trying parsing with default parser."
);
tracing
::
debug
!
(
"No tool parser provided. Trying parsing with default parser."
);
}
else
{
}
else
{
tracing
::
info
!
(
"Using tool parser: {:?}"
,
parser_str
);
tracing
::
debug
!
(
"Using tool parser: {:?}"
,
parser_str
);
}
}
let
(
parsed
,
content
)
=
detect_and_parse_tool_call
(
message
,
parser_str
,
tools
)
.await
?
;
let
(
parsed
,
content
)
=
detect_and_parse_tool_call
(
message
,
parser_str
,
tools
)
.await
?
;
if
parsed
.is_empty
()
{
if
parsed
.is_empty
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment