Skip to content

Commit df7e6d9

Browse files
committed
Small fix
1 parent 49f78e2 commit df7e6d9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/rosbag-data-source.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ bool RosbagDataProvider::parseRosbag(const std::string& bag_path,
7575
topics.push_back(imu_topic);
7676
if (!gt_odom_topic.empty()) {
7777
CHECK(pipeline_params_.backend_params_->autoInitialize_ == 0)
78-
<< "Provided a gt_odom_topic; but autoInitialize is set to 0, meaning "
79-
"no ground-truth initialization will be done...";
78+
<< "Provided a gt_odom_topic; but autoInitialize is not set to 0,"
79+
" meaning no ground-truth initialization will be done... "
80+
"Are you sure you don't want to use gt? ";
8081
topics.push_back(gt_odom_topic);
8182
} else {
8283
CHECK(pipeline_params_.backend_params_->autoInitialize_ != 0);

0 commit comments

Comments
 (0)