Skip to content

Commit ce6cfce

Browse files
committed
[status] Add dynamic/fixed offset status
1 parent 7338e4c commit ce6cfce

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/CommandLineUtilities/ProgramStatus.cxx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,14 @@ class ProgramStatus : public Program
8383
if (!mOptions.csvOut) {
8484
std::string clock = (reportInfo.ttcClock == 0 ? "TTC" : "Local");
8585
;
86-
std::cout << "------------" << std::endl;
87-
std::cout << clock << " clock" << std::endl;
88-
std::cout << "------------" << std::endl;
86+
std::cout << "----------------------------" << std::endl;
87+
std::cout << clock << " clock | ";
88+
if (reportInfo.dynamicOffset) {
89+
std::cout << "Dynamic offset" << std::endl;
90+
} else {
91+
std::cout << "Fixed offset" << std::endl;
92+
}
93+
std::cout << "----------------------------" << std::endl;
8994
}
9095

9196
for (const auto& el : reportInfo.linkMap) {

0 commit comments

Comments
 (0)