I'm using the strftime method of the Datetime class to output some info for logging purposes. It worked fine with the following formatting string in v1.0.13, but it now outputs garbage in v1.1.0. It seems to be related to the size of the internal buffer used for conversion, since reducing the size of the formatting string (and thus reducing the requested output) clears the problem up. Any ideas? A strftime input of "%m/%d/%Y %M" will not work properly but removing the space between %Y and %M does work.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm using the strftime method of the Datetime class to output some info for logging purposes. It worked fine with the following formatting string in v1.0.13, but it now outputs garbage in v1.1.0. It seems to be related to the size of the internal buffer used for conversion, since reducing the size of the formatting string (and thus reducing the requested output) clears the problem up. Any ideas? A strftime input of "%m/%d/%Y %M" will not work properly but removing the space between %Y and %M does work.