We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7338e4c commit ce6cfceCopy full SHA for ce6cfce
src/CommandLineUtilities/ProgramStatus.cxx
@@ -83,9 +83,14 @@ class ProgramStatus : public Program
83
if (!mOptions.csvOut) {
84
std::string clock = (reportInfo.ttcClock == 0 ? "TTC" : "Local");
85
;
86
- std::cout << "------------" << std::endl;
87
- std::cout << clock << " clock" << std::endl;
88
+ std::cout << "----------------------------" << std::endl;
+ std::cout << clock << " clock | ";
+ if (reportInfo.dynamicOffset) {
89
+ std::cout << "Dynamic offset" << std::endl;
90
+ } else {
91
+ std::cout << "Fixed offset" << std::endl;
92
+ }
93
94
}
95
96
for (const auto& el : reportInfo.linkMap) {
0 commit comments