blob: 4ccf108108800c779a93681496dae29777763314 [file] [log] [blame]
#include "health/State.h"
namespace velia::health {
std::ostream& operator<<(std::ostream& os, State state)
{
os << "State::";
switch (state) {
case State::ERROR:
os << "ERROR";
break;
case State::WARNING:
os << "WARNING";
break;
case State::OK:
os << "OK";
break;
}
return os;
}
}