From 065210ad214c3443d2d5a75532994752528714da Mon Sep 17 00:00:00 2001 From: Sven Anderson Date: Mon, 11 Apr 2022 23:10:38 +0200 Subject: [PATCH] common/log: add missing api-status entries Signed-off-by: Sven Anderson --- docs/api-status.json | 16 ++++++++++++++++ docs/api-status.md | 9 +++++++++ 2 files changed, 25 insertions(+) diff --git a/docs/api-status.json b/docs/api-status.json index 1733091..48f6401 100644 --- a/docs/api-status.json +++ b/docs/api-status.json @@ -1900,5 +1900,21 @@ "comment": "ListModules returns a module info struct reporting the lists of\nenabled, disabled, and always-on modules in the Ceph mgr.\n" } ] + }, + "common/log": { + "preview_api": [ + { + "name": "SetWarnf", + "comment": "SetWarnf sets the log.Printf compatible receiver for warning logs.\n PREVIEW\n", + "added_in_version": "v0.15.0", + "expected_stable_version": "v0.17.0" + }, + { + "name": "SetDebugf", + "comment": "SetDebugf sets the log.Printf compatible receiver for debug logs.\n PREVIEW\n", + "added_in_version": "v0.15.0", + "expected_stable_version": "v0.17.0" + } + ] } } \ No newline at end of file diff --git a/docs/api-status.md b/docs/api-status.md index 11578dd..054d0cc 100644 --- a/docs/api-status.md +++ b/docs/api-status.md @@ -65,3 +65,12 @@ API.ModifySubuser | v0.15.0 | v0.17.0 | ## Package: common/admin/manager +## Package: common/log + +### Preview APIs + +Name | Added in Version | Expected Stable Version | +---- | ---------------- | ----------------------- | +SetWarnf | v0.15.0 | v0.17.0 | +SetDebugf | v0.15.0 | v0.17.0 | +