• 8.5 Issue??

    By Kevin Buettner 1 decade ago

    I have been using the OpenLog java library to track events and errors in some Java Agents. I might be missing something but since upgrading to Domino 8.5, the logging stops working to the OpenLog.nsf. The really strange thing is the LotusScript works fine.



    Thoughts??

    • I'll check it out

      By Julian Robichaux 1 decade ago

      I haven't seen that, but I also haven't done any explicit Java testing on 8.5. I'll see if I can reproduce.

    • No java logging under 8.5

      By Antony J Cooper 1 decade ago

      I am experiencing the same problem, with no logging for 8.5.



      Initially I experienced the Error "Entry already exist in index" on a unrelated line,

      and after some pain I have narrowed it down to the NotesFactory class



      If you use OpenLogItem oli = new OpenLogItem() then it uses the NotesFactory class to create the session, we go the error above but there were no agentcontext details in the log.



      If you use the following then the logging worked



      Session session = getSession();

      OpenLogItem oli = new OpenLogItem(session);



      This only occurred on classes that extend AgentBase.

      • Thanks!

        By Julian Robichaux 1 decade ago

        Antony -



        Thanks VERY much for posting this. Very helpful to see the fix, and where the problem is coming from.


        • Julian