|
I am trying to get logging working in Java to investigate an issue with a
class failing.
In doing so I used the Rdi option to generate the Java method Calls.
In Java to set the logging level you can do;
Logger.getLogger("Braintree").setLevel(Level.ALL);
What I don't know how to do in RPG is set the constant ALL where ALL is a
constant in class Level that returns a Level object.
In RPG I have the following;
D getLogger PR O CLASS(*JAVA : 'java.util.logging.L+
D ogger' )
D EXTPROC(*JAVA : 'java.util.logging+
D .Logger' : 'getLogger' )
D STATIC
D
D loggerName O CLASS(*JAVA : 'java.lang.String' )
D setLevel PR EXTPROC(*JAVA : 'java.util.logging+
D .Logger' : 'setLevel' )
D newString pr o extproc(*java
D : 'java.lang.String'
D : *constructor)
D value 25a const varying
D loggerNameJ S O CLASS(*JAVA : 'java.lang.String' )
D getLoggerRet S O CLASS(*JAVA : 'java.util.logging.L+
D ogger' )
D LevelJ S O CLASS(*JAVA : 'java.util.logging.L+
D evel' )
loggerNameJ = newString('Braintree');
getLoggerRet = getLogger( loggerNameJ );
LevelJ = newString('ALL');
setLevel(getLoggerRet : LevelJ);
The program will not compile as the prototype for setLevel only expects
one parameter.
Any suggestions appreciated
Don Brown
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate
link: http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.