Skip to content
This repository has been archived by the owner on Jan 3, 2018. It is now read-only.

svandragt/bugzscoutlogwriter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BugzScoutLogWriter

A SilverStripe Log writer to send log events to a FogBugz instance using BugzScout.

What's great about it

Collect all errors, warnings and notices via FogBugz/BugzScout! One feature I like is that any issues are collated in one single ticket based on the subject.

What's BugzScout?

BugzScout is a simple API which allows you to send new bugs directly to FogBugz simply by submitting an HTTP POST request more info

What's Fogbugz?

FogBugz is an integrated web-based project management system featuring bug/issue tracking. more info

Setup

Add the following code to your mysite/_config.php, according to your setup

// Log writer
$writer = new BugzScoutLogWriter(array(
    'host' => 'http://your.fogbugz.url',
    'scoutUserName' => 'BugzScout',
    'scoutProject' => 'Project',
    'scoutArea' => 'Area' ,
    ));
SS_Log::add_writer($writer, SS_Log::NOTICE, '<=');

/dev/build, then test by doing a /dev/tasks/BugzScoutLogWriterTestTask. You might want to include the code only when Director::isLive()

About

SilverStripe Log handler to send log events to FogBugz instance

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages