Saturday, June 18, 2016

Groovy Print Sting log.info or log.error

class HelloWorld {

    HelloWorld() {
  
      log.info 'Hello World'
log.error 'Hello World    
}

    static main(args) {
        new HelloWorld()
    }
}


No comments:

Post a Comment