Print blueprint tags too

This commit is contained in:
nsubiron 2018-07-28 16:10:59 +02:00
parent 7d1f51e9cc
commit 1b69494772
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace client {
}
std::ostream &operator<<(std::ostream &out, const ActorBlueprint &bp) {
out << "ActorBlueprint(id=" << bp.GetId() << ')';
out << "ActorBlueprint(id=" << bp.GetId() << "tags=" << bp.GetTags() << ')';
return out;
}