Merge "Print key for too long property values"

This commit is contained in:
Treehugger Robot
2022-05-20 15:58:46 +00:00
committed by Gerrit Code Review

View File

@@ -238,7 +238,7 @@ public class SettingsToPropertiesMapper {
}
value = "";
} else if (value.length() > SYSTEM_PROPERTY_MAX_LENGTH) {
log(value + " exceeds system property max length.");
log("key=" + key + " value=" + value + " exceeds system property max length.");
return;
}