Reputation: 2169
There is an old application, in which when we try to compose a (new) form in the bottom bar of Lotus client it appears:
"Error logging error in line: N)"
- where N is a positive number.
I assume is refers to a written library, but is there any way I can see the exact "place" where the problem appears? I tried with Debug LotusScript but I can not see where the problem is.
I'll appreciate any tips or help. Thanks for your time.
@Command([Compose];"MainFm");
@Command([ViewRefreshFields])
Upvotes: 1
Views: 106
Reputation: 30960
The error line comes probably from a print()
line in LotusScript. Search in LotusScript libraries for "Error logging error". If you found it figure there out what's the reason for error.
You can search in Designer in menu "Search / File"
Upvotes: 2