Lines Matching refs:LOG_INFO
56 LOG_INFO("str size is not divisible by 2, size is %zu", str.size()); in FromHexString()
60 LOG_INFO("value contains none hex digit"); in FromHexString()
69 LOG_INFO("failed to parse hex char at index %zu", i); in FromHexString()
117 LOG_INFO("cannot parse string '%s' with error '%s'", str.c_str(), strerror(errno)); in Int64FromString()
121 LOG_INFO("string '%s' is empty or has wrong format", str.c_str()); in Int64FromString()
125 LOG_INFO("cannot parse whole string '%s'", str.c_str()); in Int64FromString()
137 LOG_INFO("string '%s' contains minus sign, this function is for unsigned", str.c_str()); in Uint64FromString()
144 LOG_INFO("cannot parse string '%s' with error '%s'", str.c_str(), strerror(errno)); in Uint64FromString()
148 LOG_INFO("string '%s' is empty or has wrong format", str.c_str()); in Uint64FromString()
152 LOG_INFO("cannot parse whole string '%s'", str.c_str()); in Uint64FromString()
168 LOG_INFO("string '%s' is neither true nor false", str.c_str()); in BoolFromString()