From a440d2bb01e455fc12dc12abd9e4b89dadec920a Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 24 Dec 2023 23:05:12 +0800 Subject: [PATCH] Increased logs --- inst/include/rapidjson/reader.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/inst/include/rapidjson/reader.h b/inst/include/rapidjson/reader.h index 46b7a8f..a559610 100644 --- a/inst/include/rapidjson/reader.h +++ b/inst/include/rapidjson/reader.h @@ -1748,14 +1748,14 @@ class GenericReader { template void ParseValue(InputStream& is, Handler& handler) { switch (is.Peek()) { - case 'n': ParseNull (is, handler); break; - case 't': ParseTrue (is, handler); break; - case 'f': ParseFalse (is, handler); break; - case '"': ParseString(is, handler); break; - case '{': ParseObject(is, handler); break; - case '[': ParseArray (is, handler); break; + case 'n': Rcpp::Rcout << "f423.1" << std::endl; ParseNull (is, handler); Rcpp::Rcout << "f423.1e" << std::endl; break; + case 't': Rcpp::Rcout << "f423.2" << std::endl; ParseTrue (is, handler); Rcpp::Rcout << "f423.2e" << std::endl; break; + case 'f': Rcpp::Rcout << "f423.3" << std::endl; ParseFalse (is, handler); Rcpp::Rcout << "f423.3e" << std::endl; break; + case '"': Rcpp::Rcout << "f423.4" << std::endl; ParseString(is, handler); Rcpp::Rcout << "f423.4e" << std::endl; break; + case '{': Rcpp::Rcout << "f423.5" << std::endl; ParseObject(is, handler); Rcpp::Rcout << "f423.5e" << std::endl; break; + case '[': Rcpp::Rcout << "f423.6" << std::endl; ParseArray (is, handler); Rcpp::Rcout << "f423.6e" << std::endl; break; default : - ParseNumber(is, handler); + Rcpp::Rcout << "f423.7" << std::endl; ParseNumber(is, handler); Rcpp::Rcout << "f423.7e" << std::endl; break; }