碼農學習筆記~Log的使用~Android、C#

By 維尼弘 - 5月 17, 2019

好的log讓你上天堂,沒有log讓你有處理不完的異常@@

見識到前輩們的智慧後,在每一個程式都需要有良好的紀錄

讓異常提早發現而不是,發生了才知道
再補洞,又破洞,再補洞.........

惡性循環~越補越大!!

這是不對的

Android 的可以看下面XD

http://rx1226.pixnet.net/blog/post/241754464-%5Bandroid%5D-2-9-log%E7%9A%84%E4%BB%8B%E7%B4%B9%E5%92%8C%E4%BD%BF%E7%94%A8


C#
https://docs.microsoft.com/zh-tw/dotnet/framework/debug-trace-profile/how-to-create-and-initialize-trace-listeners

本人目前使用Trace
TextWriterTraceListener myListener = new TextWriterTraceListener("TextWriterOutput.log", "myListener");
myListener.WriteLine("Test message.");

// You must close or flush the trace listener to empty the output buffer.
myListener.Flush();


參考參考~~~

  • Share:

You Might Also Like

0 意見