Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ef3cee4 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Print key for too long property values"

parents 6b5a4f3d c12ed61d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -238,7 +238,7 @@ public class SettingsToPropertiesMapper {
            }
            }
            value = "";
            value = "";
        } else if (value.length() > SYSTEM_PROPERTY_MAX_LENGTH) {
        } 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;
            return;
        }
        }