trace
trace(
message
,options?
):Promise
<void
>
Defined in: index.ts:236
Logs a message at the trace level.
string
import { trace } from '@tauri-apps/plugin-log';
let pos = { x: 3.234, y: -1.223 };
trace(`Position is: x: {pos.x}, y: {pos.y}`);
Promise
<void
>
© 2025 Tauri Contributors. CC-BY / MIT