Newbies Marco VR Posted August 14, 2014 Newbies Posted August 14, 2014 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
Newbies Marco VR Posted August 14, 2014 Author Newbies Posted August 14, 2014 Okay, already found it :-) It should be: log.info("Username: " + username); And then it will appear in the logfile.
Recommended Posts
This topic is 3765 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now