Improved logging when a resource has no identifier

This commit is contained in:
CalDescent 2021-11-13 16:52:02 +00:00
parent 61beee0f49
commit 53f9d6869d

View File

@ -88,6 +88,9 @@ public class ArbitraryDataBuildQueueItem {
@Override
public String toString() {
if (this.identifier == null) {
return String.format("%s %s", this.service, this.resourceId);
}
return String.format("%s %s %s", this.service, this.resourceId, this.identifier);
}