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

Commit 300df42a authored by Xuefeng Deng's avatar Xuefeng Deng Committed by Shuo Gao
Browse files

libstagefright: Use LOG_BASIC when use chromium http stack



When using chromium http stack, the LogLevel is LOG_ALL, and
in chromium_net, LOG_ALL will HexEncode all received data. thus
playing a 10Mbps 1080P video stream  will generate 20Mbps Hex Buffer
for event logging. This is a heavy operation for logging.

Change-Id: I28e8173e1aa806dd23014378d530d30187360060
Author: Xuefeng Deng <xuefeng.deng@intel.com>
Singed-off-by: default avatarShuo Gao <shuo.gao@intel.com>
Signed-off-by: default avatarBruce Beare <bruce.j.beare@intel.com>
Signed-off-by: default avatarJack Ren <jack.ren@intel.com>
Author-tracking-BZ: 35737
parent 64b3fe55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ uint32 SfNetLog::NextID() {
}

net::NetLog::LogLevel SfNetLog::GetLogLevel() const {
    return LOG_ALL;
    return LOG_BASIC;
}

////////////////////////////////////////////////////////////////////////////////