Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status Needs Review
Workspace Domino Designer
Categories LotusScript
Created by Guest
Created on Dec 4, 2025

Enhance limit of NotesLog limitation - AgentLog has a ize limit of approximately 64 KB

As an End user, need to enhance limit of NotesLog limitation. Currently AgentLog has a ize limit of approximately 64 KB:

https://help.hcl-software.com/dom_designer/14.5.0/basic/h_debug_agents_noteslog_classes.html

Because when doing a DXL export, and if we have an agent to output a message using AgentLog that will exceed to 64 KB limit, <runlog> tag is not showing in dxl/xml file.

For example:

#Test 1 - <runlog> is exported:
Code:
Dim aLog As New NotesLog('Test'), i%
Call aLog.Openagentlog()
aLog.Logaction('Test-124-' & i)
aLog.Close
Log-Protokoll in Notes:

#Test 2 - <runlog> is not exported:

Code:
Dim aLog As New NotesLog('Test'), i%
Call aLog.Openagentlog()
For i = 1 To 500
aLog.Logaction('Test-124-' & i)
Next
aLog.Close


We need to use this for log evaluation.

  • Attach files