Skip to content

Commit

Permalink
Show the record if the escape sequence is unsupported (#17458)
Browse files Browse the repository at this point in the history
* Show the record if the escape sequence is unsupported

Show the record if the escape sequence is unspported. so we can find and check it.

* Show the record if the escape sequence is unsupported

Show the record if the escape sequence is unspported. so we can find and check it.
  • Loading branch information
sunzj authored Oct 14, 2024
1 parent ab64835 commit 43f6c08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/meta_schedule/database/database_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ class JSONTokenizer {
str.push_back('\t');
break;
default:
LOG(FATAL) << "ValueError: Unsupported escape sequence: \\" << *cur_;
LOG(FATAL) << "ValueError: Unsupported escape sequence: \\" << *cur_
<< ". record:" << std::string(cur_, end_);
}
}
if (cur_ == end_) {
Expand Down

0 comments on commit 43f6c08

Please sign in to comment.