Description
In logging.config, the format option to the log.binary functions can be a string or a LogFormat object returned from the format() function. It would be convenient to let format() take a string rather than a table to simplify the common case of non-interval formats.
This:
foo = format("my string")
rather than this:
foo = format{ Format = "my string" }