刚刚学习Python,自己简单写了个小程序,内容如下:#!/usr/bin/python#-*-coding:utf-8-*-importlogginglogging.basicConfig(level=logging.INFO,format='%(asctime)s%(levelname)-8s...
刚刚学习Python,自己简单写了个小程序,内容如下:
#! /usr/bin/python
# -*- coding: utf-8 -*-
import logging
logging.basicConfig(level=logging.INFO,
format='%(asctime)s %(levelname)-8s Metohd: %(module)s %(message)s ',
datefmt='%Y-%m-%d %H:%M:%S',
filename='/home/test/simulator/myapp.log');
if __name__ =='__main__':
logging.debug('This is debug message')
logging.info('This is info message')
logging.warning('This is warning message')
try:
a = 4
b = 0
c = a/b
print c
except Exception,e:
print "报错:"+str(e)
logging.info(str(e))
运行提示:
logging.basicConfig(level=logging.INFO,
AttributeError: 'module' object has no attribute 'basicConfig'
高手帮忙回答下...
展开