-
Notifications
You must be signed in to change notification settings - Fork 9
Log Levels
Ken Williamson edited this page Feb 8, 2020
·
2 revisions
Method: POST
URL: http://localhost:3000/rs/loglevel
Request headers Example:
Content-Type = application/json
Logging_KEY = 45sdbb2345 //Default and can be changed with env variable
Request Body Example:
{
"loglevel": "info"
}
Response:
{
"success": true,
"logLevel": "INFO"
}
Method: POST
URL: http://localhost:3000/rs/loglevel
Request headers Example:
Content-Type = application/json
Logging_KEY = 45sdbb2345 //Default and can be changed with env variable
Request Body Example:
{
"loglevel": "debug"
}
Response:
{
"success": true,
"logLevel": "DEBUG"
}
Method: POST
URL: http://localhost:3000/rs/loglevel
Request headers Example:
Content-Type = application/json
Logging_KEY = 45sdbb2345 //Default and can be changed with env variable
Request Body Example:
{
"loglevel": "all"
}
Response:
{
"success": true,
"logLevel": "ALL"
}
Method: POST
URL: http://localhost:3000/rs/loglevel
Request headers Example:
Content-Type = application/json
Logging_KEY = 45sdbb2345 //Default and can be changed with env variable
Request Body Example:
{
"loglevel": "off"
}
Response:
{
"success": true,
"logLevel": "OFF"
}
GoAuth2 is maintained by Ulbora Labs LLC and others.