python怎麼將列印輸出日誌檔案
首先匯入sys模組,然後利用sys.stdout將print行導向到你定義的日誌檔案中,例如:
import sys # make a copy of original stdout route stdout_backup = sys.stdout # define the log file that receives your log info log_file = open("message.log", "w") # redirect print output to log file sys.stdout = log_file print "Now all print info will be written to message.log" # any command line that you will execute ... log_file.close() # restore the output to initial pattern sys.stdout = stdout_backup print "Now this will be presented on screen"
python學習網,免費的線上學習,歡迎關注!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2730/viewspace-2835766/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python輸出日誌Python
- 操作日誌記錄(包括輸出至自定義日誌檔案)
- python如何輸出日誌?Python
- 另一種列印輸出日誌資訊的方式
- python日誌重複輸出Python
- python 使用 loguru 輸出異常日誌同時列印變數值Python變數
- 將程式碼中的除錯資訊輸出到日誌檔案中除錯
- ios 將NSLog日誌重定向輸出到檔案中儲存iOS
- Spring按業務模組輸出日誌到不同的檔案Spring
- MySQL資料庫中的日誌檔案---(4)配置日誌檔案輸出路徑MySql資料庫
- 『無為則無心』Python日誌 — 66、將日誌資訊儲存到檔案中Python
- 蘋果電腦怎麼列印檔案蘋果
- excel檔案太長怎麼列印?Excel
- SpringBoot通過yml和xml檔案配置日誌輸出Spring BootXML
- C語言log日誌管理-支援檔案與終端輸出C語言
- 日誌列印
- python日誌怎麼儲存Python
- reportbuilder 日誌輸出UI
- 【Spring】日誌列印sql,日誌配置列印sqlSpringSQL
- active聯機日誌檔案到底是怎麼回事
- 怎麼樣列印加密PDF檔案加密
- 排查log4j不輸出日誌到檔案的問題
- python:檔案的輸入與輸出Python
- 使用Python解析nginx日誌檔案PythonNginx
- 【Oracle日誌】- 日誌檔案重建Oracle
- 日誌檔案
- win10日誌檔案在哪裡_win10系統日誌怎麼檢視Win10
- 日誌檔案和歸檔日誌檔案的關係以及如何切換日誌
- Java日誌輸出問題Java
- awk多行日誌排序輸出排序
- 想將多個伺服器的日誌輸出到一個地方怎麼破·?伺服器
- win10日誌檔案缺了怎麼辦_win10日誌缺失如何修復Win10
- 日誌檔案太大,壓縮後,限制檔案的大小,但出現日誌檔案已經滿的告警
- 刪除日誌檔案組與日誌檔案成員
- 管理日誌檔案
- dump日誌檔案
- APACHE日誌檔案Apache
- 使用log4j列印異常堆疊到日誌檔案