- यदि cx_Oracle में त्रुटियां होती हैं, तो शायद इन्हें किसी टेक्स्ट फ़ाइल में लॉग करना सबसे अच्छा है।
- आप sys.stdout और sys.stderr को फ़ाइल-जैसी वस्तुओं पर पुनर्निर्देशित करने का प्रयास कर सकते हैं जो लॉगर को जो कुछ भी लिखा जाता है उसे लॉग करते हैं।
- मुझे लगता है कि आप प्रत्येक घटना के बाद प्रतिबद्ध होना चाहते हैं, जब तक कि आपके पास ऐसा न करने के लिए मजबूत कारण न हों। वैकल्पिक रूप से, आप कई घटनाओं को बफर कर सकते हैं और उन सभी को हर बार एक ही लेन-देन में लिख सकते हैं।
- नीचे एक उदाहरण दिया गया है जो mx.ODBC का उपयोग करता है, आप शायद इसे बहुत अधिक परेशानी के बिना cx_Oracle में अनुकूलित कर सकते हैं। मुझे लगता है कि यह Python DB-API 2.0 के अनुरूप होना चाहिए।
स्टैंडअलोन पायथन लॉगिंग वितरण (पायथन में लॉगिंग जोड़ने से पहले) http://www.red-dove.com/python_logging.html पर है और हालांकि पायथन में लॉगिंग पैकेज बहुत अधिक अद्यतित है, स्टैंडअलोन वितरण में एक परीक्षण होता है निर्देशिका जिसमें व्युत्पन्न हैंडलर कक्षाओं के बहुत सारे उपयोगी उदाहरण हैं।
#!/usr/bin/env python
#
# Copyright 2001-2009 by Vinay Sajip. All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appear in all copies and that
# both that copyright notice and this permission notice appear in
# supporting documentation, and that the name of Vinay Sajip
# not be used in advertising or publicity pertaining to distribution
# of the software without specific, written prior permission.
# VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
# ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
# VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
# This file is part of the standalone Python logging distribution. See
# http://www.red-dove.com/python_logging.html
#
"""
A test harness for the logging module. An example handler - DBHandler -
which writes to an Python DB API 2.0 data source. You'll need to set this
source up before you run the test.
Copyright (C) 2001-2009 Vinay Sajip. All Rights Reserved.
"""
import sys, string, time, logging
class DBHandler(logging.Handler):
def __init__(self, dsn, uid='', pwd=''):
logging.Handler.__init__(self)
import mx.ODBC.Windows
self.dsn = dsn
self.uid = uid
self.pwd = pwd
self.conn = mx.ODBC.Windows.connect(self.dsn, self.uid, self.pwd)
self.SQL = """INSERT INTO Events (
Created,
RelativeCreated,
Name,
LogLevel,
LevelText,
Message,
Filename,
Pathname,
Lineno,
Milliseconds,
Exception,
Thread
)
VALUES (
%(dbtime)s,
%(relativeCreated)d,
'%(name)s',
%(levelno)d,
'%(levelname)s',
'%(message)s',
'%(filename)s',
'%(pathname)s',
%(lineno)d,
%(msecs)d,
'%(exc_text)s',
'%(thread)s'
);
"""
self.cursor = self.conn.cursor()
def formatDBTime(self, record):
record.dbtime = time.strftime("#%m/%d/%Y#", time.localtime(record.created))
def emit(self, record):
try:
#use default formatting
self.format(record)
#now set the database time up
self.formatDBTime(record)
if record.exc_info:
record.exc_text = logging._defaultFormatter.formatException(record.exc_info)
else:
record.exc_text = ""
sql = self.SQL % record.__dict__
self.cursor.execute(sql)
self.conn.commit()
except:
import traceback
ei = sys.exc_info()
traceback.print_exception(ei[0], ei[1], ei[2], None, sys.stderr)
del ei
def close(self):
self.cursor.close()
self.conn.close()
logging.Handler.close(self)
dh = DBHandler('Logging')
logger = logging.getLogger("")
logger.setLevel(logging.DEBUG)
logger.addHandler(dh)
logger.info("Jackdaws love my big %s of %s", "sphinx", "quartz")
logger.debug("Pack my %s with five dozen %s", "box", "liquor jugs")
try:
import math
math.exp(1000)
except:
logger.exception("Problem with %s", "math.exp")