RE: Logging Question
am 09.11.2005 21:53:24 von Will.Rutherdale------_=_NextPart_001_01C5E56F.08AE4B51
Content-Type: text/plain
use IO::Handle;
LOGF->autoflush( 1 );
In the teach a man to fish spirit, look at the Perl Cookbook section 7.19.
Also Programming Perl says a few things about this topic. You should have
those books handy if you're writing much Perl code.
That wasn't really a DBI question though.
-Will
-----Original Message-----
From: Vergara, Michael (TEM) [mailto:mvergara@guidant.com]
Sent: Wednesday 09 November 2005 15:25
To: dbi-users@perl.org
Subject: Logging Question
Hello Everyone:
I have a Perl script that connects to multiple Oracle databases. I have the
script write some status information to
a log file. There is one particular database that hangs in processing, and
I don't know why. The log file does not seem
to be written until the file is closed.
I am wondering, is there a Perl command or technique that will force lines
that are logically written to a log file to be
physically written to that file?
Here's my opening code:
#
# ------------------------------------------------------------ -------------
# Open Log file
# ------------------------------------------------------------ -------------
my $logFileName = "${HomeDir}/work/monitor/output/logs/db_status.log";
open( LOGF, ">>" . $logFileName ) or die "\nCannot open log file\n\n";
print LOGF "\n----------\n";
print LOGF sprintf("db_status started at %02d-%02d-%04d %02d:%02d:%02d\n",
$Tm->mon+1, $Tm->mday, $Tm->year+1900, $Tm->hour,
$Tm->min, $Tm->sec );
The line that says 'db_status started...' does not get written for the
hanging system because I usually 'kill -9' or 'Ctrl-C'
the process. I'd like to force a write after each section so I can see
there the process is hanging.
Any help will be appreciated.
Thanks,
Mike
_____
Michael P. Vergara Be good and you will be lonesome
Oracle Database Administrator Mark Twain
(951) 914-2000 (Voice)
(951) 914-2990 (FAX)
Any views expressed herein are not necessarily those of Guidant Corporation.
- - - - - - - Appended by Scientific-Atlanta, Inc. - - - - - - -
This e-mail and any attachments may contain information which is confidential, proprietary, privileged or otherwise protected by law. The information is solely intended for the named addressee (or a person responsible for delivering it to the addressee). If you are not the intended recipient of this message, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this e-mail in error, please notify the sender immediately by return e-mail and delete it from your computer.
------_=_NextPart_001_01C5E56F.08AE4B51--