Add toString for debug output

This commit is contained in:
Peter Dell 2022-08-29 09:49:37 +02:00
parent 60e50afac7
commit 083a23d4e1

View File

@ -206,5 +206,9 @@ public class PropertiesSerializer {
setProperty(prefix + valueKey, valueProperties.getProperty(valueKey));
}
}
public String toString() {
return properties.toString();
}
}