Hello, I don't know which branch would be the right one for the PR, the develop seems suitable to me.
Closes #26. I saw that you already fixed it (in develop), but this way there is no need to escape the :.
# After reversing escaping ":"
> devtools::load_all()
> microbenchmark::microbenchmark(read_logs(), times = 10)
Unit: milliseconds
expr min lq mean median uq max neval
read_logs() 949.762 952.6262 974.7672 960.654 965.1672 1060.263 10
# After changing the sanatizer
> devtools::load_all()
> microbenchmark::microbenchmark(read_logs(), times = 10)
Unit: milliseconds
expr min lq mean median uq max neval
read_logs() 524.0726 527.1863 536.9793 528.3646 530.8387 596.9289 10
# Final version
> devtools::load_all()
> microbenchmark::microbenchmark(read_logs(), times = 10)
Unit: milliseconds
expr min lq mean median uq max neval
read_logs() 487.6132 492.4244 511.2865 496.9468 499.2765 584.3085 10
Hello, I don't know which branch would be the right one for the PR, the develop seems suitable to me.
Closes #26. I saw that you already fixed it (in develop), but this way there is no need to escape the
:
.The times refer to loading 10,000 log entries