Better warning component printing

This commit is contained in:
SiboVG 2023-01-17 00:05:08 +01:00
parent ebb9fd0e3c
commit 60896d2236

View File

@ -76,7 +76,7 @@ public class WarningSet extends AbstractSet<Warning> implements Cloneable, Monit
*
*/
public boolean add (Warning w, String d) {
return this.add(w.toString() + ": " + d);
return this.add(w.toString() + ": \"" + d + "\"");
}
@Override