Printing: print fewer newlines

This commit is contained in:
2026-06-11 11:17:06 -04:00
parent e1d299859d
commit 54dcc92c2b
4 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ const std::string DeviceManager::stringifyDeviceSpecs(void)
std::ostringstream oss;
for (const auto& spec : getInstance().s.rsrc.deviceAttachmentSpecs) {
oss << "Device Attachment Spec: " << spec->stringify();
oss << "Device Attachment Spec: " << spec->stringify() << "\n";
}
return oss.str();