
Log::Dispatch::Prowl - Object for logging to the iPhone

version 1.000

use Log::Dispatch;
my $log =
Log::Dispatch->new
( outputs =>
[ 'Prowl' =>
{ min_level => 'debug',
name => 'MyApp',
apikey => 'yourapicodehere',
},
],
);
$log->alert("I'm searching the city for sci-fi wasabi");

This module provides an object for logging directly to your iPhone using push notifications and the iPhone App Prowl (http://prowl.weks.net/).

The constructor takes the following parameters in addition to the standard parameters documented in Log::Dispatch::Output:
This is the name which appears on the iPhone as application name.
Set this to the API key you can get from the Settings page on http://prowl.weks.net/.


Moritz Onken, <onken@netcubed.de>