Skip to content

Commit

Permalink
[hadd] change Err(), Warn() and Info() messages
Browse files Browse the repository at this point in the history
now they are like Error(), Warning() and Info() from TError.h
  • Loading branch information
silverweed committed Jul 29, 2024
1 parent 55a185d commit a31fb9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main/src/hadd.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,17 @@
////////////////////////////////////////////////////////////////////////////////

inline std::ostream &Err() {
std::cerr << "[ Error ] hadd: ";
std::cerr << "Error in <hadd>: ";
return std::cerr;
}

inline std::ostream &Warn() {
std::cerr << "[Warning] hadd: ";
std::cerr << "Warning in <hadd>: ";
return std::cerr;
}

inline std::ostream &Info() {
std::cerr << "[ Info ] hadd: ";
std::cerr << "Info in <hadd>: ";
return std::cerr;
}

Expand Down

0 comments on commit a31fb9c

Please sign in to comment.