forked from rdkcentral/rdkservices
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RDKTV-30669 : Do not print the response JSONData as its flooding
Reason for change: Identified that some rogue component is calling getInterfaces(), getDefaultInterface() and getIPSettings2() every 1 min. These JSONRPC Methods was printing responses to the console (log file). But since its every 1 min, these 3 response lines are keep printing and the log file is getting bigger and rotates. Sometimes we discard old rotated logs & take last few rotated files. But upon issue reported from field and when developer looks for log, the initial log wont present due to the rotation. There are multiple plugins printing unnecessary logs that contributes to the log rotation and this lines prints important role in triaging but given the rogue component is NOT identified, we had to comment out this line to save the space. Test Procedure: verify wpeframework.log Risks: Medium Signed-off-by: Karunakaran A <[email protected]>
- Loading branch information
1 parent
97f4a2e
commit e967836
Showing
9 changed files
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
autostart = "true" | ||
autostart = "false" | ||
callsign= "org.rdk.Network" | ||
|
||
test = JSON() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
set(autostart true) | ||
set(autostart false) | ||
set(callsign "org.rdk.Network") | ||
|
||
map() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
autostart = "true" | ||
autostart = "false" | ||
callsign= "org.rdk.NetworkManager" | ||
|
||
test = JSON() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
set(autostart true) | ||
set(autostart false) | ||
set(callsign "org.rdk.NetworkManager") | ||
|
||
map() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
autostart = "true" | ||
autostart = "false" | ||
callsign= "org.rdk.Wifi" | ||
|
||
test = JSON() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
set(autostart true) | ||
set(autostart false) | ||
set(callsign "org.rdk.Wifi") | ||
|
||
map() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters