Happy !

dalsat / ShoreLine-Reporter

Project infos

License MIT
Tags
Creation date 2014-06-12
Website

Monticello registration

About ShoreLine-Reporter

ShoreLine Reporter is the exception reporting tool of Pharo.

ShoreLine Reporter is included in Pharo 4. You can configure it to submit every stack trace by default by dropping this script in your Pharo 4.0 preferences directory:

StartupPreferencesLoader default executeAtomicItems: {
    StartupAction
        name: 'ShoreLine-Reporter Settings'
        code: [ [
            "Setting Reporter configuration"
            #SlReporter asClassIfPresent: [ :c | c enabled: true ].
            #SlReporter asClassIfPresent: [ :c | c autoSubmit: true ].
            #SlReporter asClassIfPresent: [ :c | c showSummary: false ].
            #SlReporter asClassIfPresent: [ :c | c showNotification: true ].
            ] asJob run ]
        runOnce: true.
}.

You can change the behavior of Shoreline Reporter anytime from the Settings Browser.

If you use Pharo 3, you can still load ShoreLine Reporter with the following script:

Gofer it
    smalltalkhubUser: 'dalsat' project: 'ShoreLine-Reporter';
    configuration;
    load.
#ConfigurationOfShoreLineReporter asClass load.