Disable the Formatting Syntax in a Text Log File

4 次查看(过去 30 天)
I'm calling a Matlab script from windows command line and generate the log as a text file:
matlab -r "run C:\Code\DailyProcess.m;" -logfile "DailyProcessLog.txt"
The log file indeed contains whatever information you'll see in the command window should you run the script directly in Matlab. However, it also gives you the formatting language like this:
In <a href="matlab: opentoline('C:\Code\DailyProcess.m',21,1)">DailyProcess at 21</a>
You see that "<a href="matlab:" stuff is really annoying (I see a couple of lines like this). Is there a way to disable the formatting syntax in a log file and simply output a plain text file?
I'm using Matlab 2013b in Windows 7. The reason to call matlab from command line is because I need to schedule the job in Windows Task Scheduler.

采纳的回答

Jan
Jan 2015-4-16
编辑:Jan 2015-4-16
You can try the undocumented switch
feature('HotLinks', 'off');
Another idea is to clean the logfile afterwards.
I do not use the output to the command line for logging, but forward every message, which should appear in the logs to a dedicated function, which write copies to the command line and to a file.
  2 个评论
Ledger Yu
Ledger Yu 2015-5-15
Looks like the issue is still there. Could you please shed some more light on the way you record logs? Ideally I do want to see every message to a dedicated function (including every command passed to command and any failure messages).
normanius
normanius 2018-9-25
Note that Jan's answer also disables the special formatting of tables (font type of header and row names). So not only "Hot Links" are disabled, but special formatting in general. Thanks, Jan!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Code Analysis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by