Borrar filtros
Borrar filtros

Disable the Formatting Syntax in a Text Log File

1 visualización (últimos 30 días)
Ledger Yu
Ledger Yu el 16 de Abr. de 2015
Comentada: normanius el 25 de Sept. de 2018
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.

Respuesta aceptada

Jan
Jan el 16 de Abr. de 2015
Editada: Jan el 16 de Abr. de 2015
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 comentarios
Ledger Yu
Ledger Yu el 15 de Mayo de 2015
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 el 25 de Sept. de 2018
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!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB Code Analysis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by