Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
chrisg
Partner - Creator III
Partner - Creator III

Name of App in the log file of the Loascripts?

Hi,

Where can I find the app name in the log file of the Loascripts?
Unfortunately I didn't find it.

Many Thx
best regards
Chrsitoph

Do or Do Not. There is no try!
Labels (3)
4 Replies
jwjackso
Specialist III
Specialist III

The first part of the log name is the application GUID.  I get the application GUID and search on the GUID.

If I need to find something in multiple applications, I create a table of the application GUIDs manully or by querying the repository database.  I then load the table into a Python script to search the script folder 

Levi_Turner
Employee
Employee

Can you explain a bit more what you're trying to accomplish and why? As you've found, by default, the app's name is not written to the log file. As @jwjackso pointed out, the app's ID is in the filename which can be used to join together information in a pinch.

chrisg
Partner - Creator III
Partner - Creator III
Author

Hi @Levi_Turner , hi @jwjackso 

many thx

To the background:
Different load scripts are running on my server at different times. The data is delivered via FTP. Unfortunately errors often occur because the formats are not adhered to or columns are missing.
I would then like to read out the log files and send notes to the data suppliers by email. Since Filemaker is also running on the server, the plan is to do this via Filemaker. It's a kind of alert function.

Other ideas or approaches are very welcome

best regards
Christoph

Do or Do Not. There is no try!
albertovarela
Partner - Specialist
Partner - Specialist

You could create a variable and output to script via TRACE with some sort of naming convention to later search for... for example

Let vAppName = DocumentTitle();

TRACE 'Application Name: $(vAppName)';