-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lei Liu <Lei.Liu.AP@sony.com>
- Loading branch information
Showing
5 changed files
with
28 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# The logger name. | ||
string name | ||
|
||
# logger level: UNKNOWN, DEBUG, INFO, WARN, ERROR, FATAL | ||
# 0 10 20 30 40 50 | ||
uint8 level |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# True when succeed, false when failed. | ||
bool successful | ||
|
||
# Reason why the setting was either successful or a failure. | ||
string reason |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# A list of logger names to get. | ||
string[] names | ||
|
||
--- | ||
# List of logger levels which is the same order as the provided names. If a | ||
# logger was not yet set, the value will have 'unknown' as the value. | ||
LoggerLevel[] levels |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# A list of loggers to set. | ||
LoggerLevel[] levels | ||
|
||
--- | ||
# Indicates whether setting each logger succeeded or not and why. | ||
SetLoggerLevelsResult[] results |