Commits
- Commit:
923b1a5885e0ebbe4058e357c435562363e30c7a
- From:
- TheLion <thelion@thunderirc.net>
- Date:
ci: linting
- Commit:
f976eb7d37ee1bfb2d1ad04ea7d6aad88882db11
- From:
- TheLion <thelion@thunderirc.net>
- Date:
feat: allow setting verbosity
- Commit:
c758c43671f604a7bc694b5f832fbdf544b6e276
- From:
- TheLion <thelion@thunderirc.net>
- Date:
docs: update readme
- Commit:
c62b38f80091d571afd282be4822856bc16581c8
- From:
- TheLion <thelion@thunderirc.net>
- Date:
fix: file paths
- Commit:
c30e374147d6111ca19cdfac5961d4a8c8e6cf21
- From:
- TheLion <thelion@thunderirc.net>
- Date:
feat: add logger module
- Commit:
cfa8bcc1ed13ff75d334145671cee27905afc705
- From:
- Izzy Blacklock <izzyb@planetofnix.com>
- Date:
Added checks for data to insert before calling dbInsertRecord()
- Commit:
23393a00219da04c2f0c1ab63b2084a84f011dbe
- From:
- Izzy Blacklock <izzyb@planetofnix.com>
- Date:
Added debug() messages to libraries and tested
Seems to work well using exported constants.
- Commit:
e3ad35bb3d83a37edc6a4aa29bcdb9287d42960f
- From:
- Izzy Blacklock <izzyb@planetofnix.com>
- Date:
Added debug() and debug level constants
Can now selectively import the debug() function an defined constants
like this:
use IRCNOW::IO qw(:DEBUG);
updated parseznc.pl to use it.
- Commit:
618ba1715bb12777f4afd3312d02c3c4501b43f2
- From:
- Izzy Blacklock <izzyb@planetofnix.com>
- Date:
Moved basic io functions from botnow to lib/IRCNOW/IO.pm
Started moving code from botnow into IRCNOW:: library
- Commit:
7deb630f2352fb316c67d518f8d2795b059e92b9
- From:
- Izzy Blacklock <izzyb@planetofnix.com>
- Date:
Moved database related functions to IRCNOW::Database.pm
Added IRCNOW::Parselog.pm as a base class for log parsers. It has stub
functions for common database functions to make the code easier to
view/manage at the application level.
- Commit:
16a10af07204a2e0d1d7d55a71ef811947791581
- From:
- Izzy Blacklock <izzyb@planetofnix.com>
- Date:
Start of a library set for accessing data on ircnow network servers
Current version connects to an botnow database and the parses the znc
log file. It can create a database table for the znc log and read
the last line from the database table. The test application parseznc.pl
does a simple dump of the parsed data file. It can skip the records
from the dump based on a passed record.
Working to abstract some of the code into a IRCNOW::ParseLog and
IRCNOW::Database library to make future log parsing tasks easier.