Logfmt-compatible mode for debugging specifier

It would be nice if there was a setting to make the debugging specifier in f-string (ex: x="hello world";print(f'{x=})) logfmt friendly. There’s no “official” logfmt standard but the closest thing to the official standard, the go logfmt parser, does not accept single quotes. This is a problem because the debugging specifier sometimes prints strings with single quotes. It would be cool if there was a way to make it always use double quotes, escaping any double quotes within the double quotes.