diff --git a/interfaces/ets/ani/hilog/ets/@ohos.hilog.ets b/interfaces/ets/ani/hilog/ets/@ohos.hilog.ets index f6bcbceefb0f783fc5b22b48fb84801aedc67429..444c8479f0fb8df1955dcd3f547be4be3b8ccd09 100644 --- a/interfaces/ets/ani/hilog/ets/@ohos.hilog.ets +++ b/interfaces/ets/ani/hilog/ets/@ohos.hilog.ets @@ -13,23 +13,25 @@ * limitations under the License. */ +import { RecordData } from '@ohos.base'; + export default namespace hilog { loadLibrary("hilog_ani"); export native function debug(domain: int, tag: string, format: string, - ...args: (Object|undefined|null)[]): void; + ...args: RecordData[]): void; export native function info(domain: int, tag: string, format: string, - ...args: (Object|undefined|null)[]): void; + ...args: RecordData[]): void; export native function warn(domain: int, tag: string, format: string, - ...args: (Object|undefined|null)[]): void; + ...args: RecordData[]): void; export native function error(domain: int, tag: string, format: string, - ...args: (Object|undefined|null)[]): void; + ...args: RecordData[]): void; export native function fatal(domain: int, tag: string, format: string, - ...args: (Object|undefined|null)[]): void; + ...args: RecordData[]): void; export native function isLoggable(domain: int, tag: string, level: LogLevel): boolean;