August 14, 201411 yr Newbies Hi, I've built a couple of modules in Java for use in Scriptmaster and that works fine. Now I want to do some logging from my Java code to the default 360Works logfiles which are located in the user homedirectory in the folder 360Works. Is there an easy way to do that? I'm now doing this: private static final Logger log = Logger.getLogger(MyPlugin.class.getName()); And to add a message to the log: log.fine("Username: " + username); But that doesn't do what I want. Please help :-) regards, Marco
August 14, 201411 yr Author Newbies Okay, already found it :-) It should be: log.info("Username: " + username); And then it will appear in the logfile.
Create an account or sign in to comment