This default DateTime output format produces ISO-8601. If you want something else, you need to use methods strftimeor format_cldror one of the modules DateTime::Format::*to output a different format, for example:
print DateTime->now->format_cldr("YYYY-MM-dd hh:mm:ss");
source
share