Skip to content

Commit 688b559

Browse files
Merge pull request #3950 from hersle/shorter_debug
Make debugging page shorter
2 parents f456665 + 4748e48 commit 688b559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/basics/Debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ We can use `debug_system` to log the failing assertions in each call to the RHS
5757
```@repl debug
5858
dsys = debug_system(sys; functions = []);
5959
dprob = ODEProblem(dsys, [], (0.0, 10.0));
60-
dsol = solve(dprob, Tsit5());
60+
dsol = solve(dprob, Tsit5(); dtmin = 0.1); # high dtmin only to show less clutter on this page
6161
```
6262

6363
Note the logs containing the failed assertion and corresponding message. To temporarily disable

0 commit comments

Comments
 (0)