forked from Qortal/qortal
Improved logging when a resource has no identifier
This commit is contained in:
parent
61beee0f49
commit
53f9d6869d
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user