I\'m having trouble finding a good way of formatting a UTC-time stamp with this format: yyyyMMdd-HH:mm:ss.
yyyyMMdd-HH:mm:ss.
I wasn\'t able
You can try this:
TimeZone.getTimeZone('UTC') Date date = new Date() String newdate = date.format("YYYY-MM-dd HH:mm:ss.Ms") log.info newdate