E9.2 Enterprise Server and User Specific Log File Configuration

ONYX

ONYX

Well Known Member
Hi All,
Just wondering whether it is possible to enable jdedebug.log for a particular jde user on enterprise server?
I am trying to log all business function calls for a specific user that is calling bssv's.
Looking at the documentation it doesn't look it's possible, chatgpt is telling me otherwise :)

Enterprise server doc

HTML server doc
 
Depending on your Tools Release, from 9.2.8 on you have an option called User Logging, which is just below the one you linked in Server Manager Guide :)
You can also enable user logs for CallObject Kernels of EnterpriseOne servers [...]
 
Just don't forget to switch off once done. Damned things will fill up your disk faster than a barman pulls a pint.
 
Depending on your Tools Release, from 9.2.8 on you have an option called User Logging, which is just below the one you linked in Server Manager Guide :)
Well, it doesn't look like user specific log configuration is possible on enterprise server TR 9.2.8.
Oracle doc is not making it more clear and we don't have "User Specific Log File Configuration" for Enterprise Server in Server Manager.
"User Specific Log File Configuration" is there for AIS and HTML server's, though.
We are on EnterpriseOne Server Manager Management Console Version 9.2.8.1
 
Interesting! This is a 9.2.8.2 SVM with 9.2.8.2 Enterprise Server and this is what it looks like for me - and it also works very well!
1724653499645.png

Is it a possibility to go to 9.2.8.2 with just the SVM? That might be worth a try. Otherwise, what is your Enterprise Server's platform and is the rest of the communication working as expected? Metrics, Logs etc. etc.
 
Interesting! This is a 9.2.8.2 SVM with 9.2.8.2 Enterprise Server and this is what it looks like for me - and it also works very well!
View attachment 20435

Is it a possibility to go to 9.2.8.2 with just the SVM? That might be worth a try. Otherwise, what is your Enterprise Server's platform and is the rest of the communication working as expected? Metrics, Logs etc. etc.
Thanks, MFreitag

We stuck with the old version of Server Manager for another 3-4 months.
I ended up creating a bsfn to toggle jdedebug.log on server and retrieving appropriate log file from server knowing the kernel/process.
This is even more flexible, now I can run bssv's / app's and toggle jdedebug.log on the fly when needed.

C:
// get logging status
jdeGetTraceStatus();

// get kernel
lIpcPid = jdeGetPid();

// enable logging
changeLogSettingsNoINI(_J("Output"), 1);

// disable logging
changeLogSettingsNoINI(_J("Output"), 0);
 
Back
Top