Logging is a very important part of a server application - it allows to analyze workload, collect metrics and facilitates finding critical bugs.
RestRserve
ships with basic (yet handy) logging utility
- Logger
. It can be used in the application code, but what
is more important, it is integrated into Application
class
in order to print useful messages during app execution.
Each applications comes with built-in logger member:
library(RestRserve)
application = Application$new()
application$logger$info("hello from logger")
#> {"timestamp":"2024-05-21 10:39:15.107491","level":"INFO","name":"Application","pid":14703,"msg":"hello from logger"}
logger
is an instance of Logger
class. We
believe it is important to have logs in a machine readable format, so by
default logger writes messages to stdout
in JSON
format.
Amount of logging can be adjusted with set_log_level
method:
If you want to customize logger
, you can tweak it with
logger$set_printer()
function or even swap it to your own
(see ?Logger
for details):
Moreover Logger
mimics loggers from fully-featured lgr package - you can
use them interchangeably.
application$logger
object however is not designed to be
called by end user to produce messages. It is used internally in the
application
to emit status messages along the
request-response processing pipeline.
Consider following example. We develop a method which takes a square root of a number:
application = Application$new()
application$add_get("/sqrt", function(.req, .res) {
.res$set_body(sqrt(x))
})
Now let’s query it:
# let's emulate query string "/sqrt?x=10"
request = Request$new(path = "/sqrt", method = "GET", parameters_query = list(x = "10"))
response = application$process_request(request)
#> {"timestamp":"2024-05-21 10:39:15.162887","level":"ERROR","name":"Application","pid":14703,"msg":"","context":{"request_id":"505a7abc-171b-11ef-b3c7-faffc2676f47","message":{"error":"object 'x' not found","call":"FUN(request, response)","traceback":["FUN(request, response)",".res$set_body(sqrt(x))"]}}}
response$body
#> [1] "500 Internal Server Error"
Surprise! (or not?)
All request query parameters are strings, but we forgot to convert
x
to a numeric value. This caused R interpreter to throw an
error.
Note however how gracefully RestRserve handled this case:
For example following code will just give you last error (but not a traceback):
fun2 = function(x) {
sqrt(x)
}
fun1 = function(x) {
fun2(x)
}
try(fun1('a'))
#> Error in sqrt(x) : non-numeric argument to mathematical function
Which is not very useful when you try to debug server application.
In contrast let’s call it within RestRserve application:
application$add_get("/sqrt2", function(.req, .res) {
.res$set_body(fun1(x))
})
request = Request$new(path = "/sqrt2", method = "GET", parameters_query = list(x = "10"))
response = application$process_request(request)
#> {"timestamp":"2024-05-21 10:39:15.197520","level":"ERROR","name":"Application","pid":14703,"msg":"","context":{"request_id":"505db8d0-171b-11ef-b3c7-faffc2676f47","message":{"error":"object 'x' not found","call":"FUN(request, response)","traceback":["FUN(request, response)",".res$set_body(fun1(x))",".res$set_body(fun1(x))","fun2(x)"]}}}
Now we clearly see that error happens inside fun2