Skip to content

Commit

Permalink
Merge pull request #541 from jhernand/fix_json_representation_of_log_…
Browse files Browse the repository at this point in the history
…severity

Fix JSON representation of log severity
  • Loading branch information
jhernand authored Apr 11, 2022
2 parents c0517f4 + 9cf0da3 commit 43f4847
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions model/service_logs/v1/cluster_log_type.model
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,19 @@ limitations under the License.
*/

enum Severity {
@json(name = "Debug")
Debug

@json(name = "Info")
Info

@json(name = "Warning")
Warning

@json(name = "Error")
Error

@json(name = "Fatal")
Fatal
}

Expand Down

0 comments on commit 43f4847

Please sign in to comment.