× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



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


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.