diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index 800b5cd2f0..84a1da3438 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -458,7 +458,10 @@ when defined(nimRequiresNimFrame): proc callDepthLimitReached() {.noinline.} = writeStackTrace() - showErrorMessage("Error: call depth limit reached in a debug build (" & $nimCallDepthLimit & " function calls). You can change it with -d:nimCallDepthLimit= or switch to a release build with -d:release.\n") + showErrorMessage("Error: call depth limit reached in a debug build (" & + $nimCallDepthLimit & " function calls). You can change it with " & + "-d:nimCallDepthLimit= but really try to avoid deep " & + "recursions instead.\n") quitOrDebug() proc nimFrame(s: PFrame) {.compilerRtl, inl, exportc: "nimFrame".} =