scrolls
scrolls copied to clipboard
Simple logging
I would like to use Scrolls as a single logging pipe, but what I need to do is also have a way to capture that data via another (additional) mechanism...
Unless the data-type isn't supported by Scrolls it should probably yield the same result when the data is logged and then parsed. Eg: `parse(unparse(s: "true")) #=> {"s" => "true"}` Instead...
Is there a document anywhere that specifies how to generate and interpret logs in the scrolls format? The phrase “a key=value structure” is pretty open-ended. I took a stab at...
When I send a value like `"param=value"` Scrolls wraps the whole string in its own quotes, but doesn't escape the quotes given. The output is something like `query_string=""param=value""`. Those nested...