[SimBot-commits] CVS: simbot/plugins sqlite-logger.pl,1.74,1.75
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2006-09-18 08:15:51
|
Update of /cvsroot/simbot/simbot/plugins In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv8230 Modified Files: sqlite-logger.pl Log Message: Do not die inside a plugin. Still yell, though. :) Index: sqlite-logger.pl =================================================================== RCS file: /cvsroot/simbot/simbot/plugins/sqlite-logger.pl,v retrieving revision 1.74 retrieving revision 1.75 diff -u -d -p -r1.74 -r1.75 --- sqlite-logger.pl 5 Feb 2006 03:26:30 -0000 1.74 +++ sqlite-logger.pl 18 Sep 2006 08:15:45 -0000 1.75 @@ -286,7 +286,7 @@ sub do_seen { if ( $context =~ m/seen-row=(\d+)/ ) { $seen_row = $1; } else { - die 'This shouldn\'t happen!'; + &debug(DEBUG_WARN, 'seen: This shouldn\'t happen!\n'); } if ( $context =~ m/seen-event=(\S+)/ ) { @events = split( /,/, $1 ); |