NAME

Kieker::Writer::FileWriter - Provides a Kieker Writer for file output.


SYNOPSIS

 use Kieker::Writer::FileWriter;
 my $writer = Kieker::Writer::FileWriter->instance();
                                      # Get writer instance
 $writer->write($string);             # writes string to the current file


DESCRIPTION

Writes Kieker records to a Logfile. Can also be used to write other strings to log files.


METHODS

$writer = Kieker::Writer::FileWriter->instance();

Returns the writer singleton instance. Thsi object holds the filehandle currently wrinting to. If no instance exists, it is created and a new logfile is created using the current time for the filename.

$writer->write(STRING);

Writes STRING to the filehandle.


BUGS

The package is probably full of bugs and is likely to break on every possible occasion. If you find any please let me know via email.


COPYRIGHT and LICENCE

Copyright 2013 Nis Börge Wechselberg, Kiel, Germany, nbw@informatik.uni-kiel.de

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.