Clarify some IpManager/ApfFilter debugging output.

Test: as follows
    - built
    - flashed
    - booted
    - "runtest frameworks-net" passes
    - "adb shell dumpsys wifi ipmanager" shows updated output
Bug: 34793131
Change-Id: I6dec135b97343943efb421ef7b2e84c4751dd5ea
This commit is contained in:
Erik Kline
2017-04-21 17:56:55 +09:00
parent 7b6ba2b3ea
commit aca4fac0db

View File

@@ -46,7 +46,7 @@ public class ApfCapabilities {
} }
public String toString() { public String toString() {
return String.format("%s{version: %d, maxSize: %d format: %d}", getClass().getSimpleName(), return String.format("%s{version: %d, maxSize: %d, format: %d}", getClass().getSimpleName(),
apfVersionSupported, maximumApfProgramSize, apfPacketFormat); apfVersionSupported, maximumApfProgramSize, apfPacketFormat);
} }
} }