PackageDescription: VerboseProcessDump


Verbose Process Dump

Last published: March 16, 2011 by 'georg'

Defines 0 Classes
Extends 3 Classes


This little package enables writing full stacks e.g. in exception handlers or in other situations where debugging is very difficult.

Developed in the context of ObjectStudio8 by Georg Heeg, but can be useful elsewhere, specifically in support.

Usage examples:

Just before something critical happens, execute in a workspace:

[(Core.Delay forSeconds: 10) wait.
Kernel.Processor verbosePrintAllOnFile] forkAt: 100

or when you know that debugging is impossible and the notifier even does not work: put in UnhandledException>defaultAction

thisContext verbosePrintOnFile.
ObjectMemory quit.