以前Log都是打印在一个文档中,然后打开文件夹,最后打开文档查看里面的内容,每次打开文件夹感觉很烦。前些日子看到同事开发.NET的时候,用他自己的一个小工具能够时时查看到Log的内容,非常方便,所以就想移植到PHP开发中。一、查看效果1、打开客户端小工具mylog.exe,在地址..
分类:
Web程序 时间:
2017-04-17 14:57:09
阅读次数:
199
def Mylog(): print("my log") 上面是定义的一个装饰器,装饰器都使用闭包实现 执行log("ddd"),只会打印1,也就是当前返回deractor1这个函数。 如果执行log("dddddd")(Mylog),就会打印1,2,也就是当前返回的函数是wrapper。 如果lo ...
分类:
编程语言 时间:
2017-04-09 13:54:20
阅读次数:
184
1.log4j a.概念:一个非常优秀的开源日志记录工具 b.配置: ①src同目录下建立log4j.properties文件,书写: ②Loggers Loggers组件在此系统中被分为五个级别:DEBUG、INFO、WARN、ERROR和FATAL DEBUG < INFO < WARN < E ...
分类:
编程语言 时间:
2017-03-29 00:07:46
阅读次数:
207
C++打印日志编程例子: int iCnt = 0; CString csMsg; CTime curTime; CMyLog mylog; CString csMylog; csMylog.Format("%d:\\CYJ\\ThreadTask%d.log",id); csMsg.Format( ...
分类:
其他好文 时间:
2017-02-09 00:45:22
阅读次数:
141
svn 忽略 以下文件 和目录 (不提交) runningtime --选中 tortoiseSVN --unversion and add to ignore list web workspace.xml mylog1.txt mylog1.txt.bak ...
分类:
其他好文 时间:
2016-11-23 12:00:19
阅读次数:
477
+ (AFHTTPSessionManager *)getAFHTTPRequestOperationManager { MYLog(@"1.getAFHTTPRequestOperationManager"); // [self getToken]; AFHTTPSessionManager *m ...
分类:
Web程序 时间:
2016-11-20 00:00:44
阅读次数:
562
===============================================
#最普通的log打印
importlogging
log_file="/tmp/mylog.log"
logging.basicConfig(filename=log_file,level=logging.DEBUG)
deffun1():
logging.debug("Thisisrunningfun1")
if__name__=="__main__":
fun1()
================..
分类:
其他好文 时间:
2016-09-23 00:11:23
阅读次数:
182
mylog.h mylog.c makefile ...
分类:
系统相关 时间:
2016-09-08 00:42:28
阅读次数:
212
python判断mongo查询结果是否为空,可以使用cursor.count()来判断,为0则查询返回结果为空。conn=pymongo.MongoClient(host="192.168.3.6",port=27017)db=conn.testdbdb.authenticate("appuser","apppass")mylog=db.system.profilea=mylog.find({"ts":{‘$gt‘:tn}}).sort("ts",..
分类:
数据库 时间:
2016-09-01 16:34:07
阅读次数:
3336