scrolling fixed

This commit is contained in:
Dhanji Prasanna
2025-10-03 11:01:39 +10:00
parent 56e13ced64
commit b39fd02603
2 changed files with 125 additions and 16 deletions

View File

@@ -1507,7 +1507,10 @@ The tool will execute immediately and you'll receive the result (success or erro
// Log the full request JSON
match serde_json::to_string_pretty(&request) {
Ok(json) => {
error!("Full request JSON:\n{}", json);
error!(
"(turn on DEBUG logging for the raw JSON request)"
);
debug!("Full request JSON:\n{}", json);
}
Err(e) => {
error!("Failed to serialize request: {}", e);