Currently the cacheobject.Reason type is an int. This works well enough for the library itself, but it's a shame that it doesn't log very well.
For example, right now if parsing a no-store header I get the following log message:
{"level":"warn","reasons":[9],"time":"2021-08-30T17:08:41+01:00","message":"JWK keys are not cacheable"}
The "reasons":[9] part in particular is not very useful.
If the cacheobject.Reason type was instead a human readable string then the log messages here would be much more useful, without actually compromising anything about using the library.
Currently the
cacheobject.Reasontype is anint. This works well enough for the library itself, but it's a shame that it doesn't log very well.For example, right now if parsing a
no-storeheader I get the following log message:The
"reasons":[9]part in particular is not very useful.If the
cacheobject.Reasontype was instead a human readable string then the log messages here would be much more useful, without actually compromising anything about using the library.