We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
very convenient to have a function like:
/// Logs format string to host, if log level is enabled. pub fn log(level: comptime_int, comptime fmt: []const u8, args: anytype) !void { const msg = try std.fmt.allocPrint(_plugin.allocator, fmt, args); _plugin.log(@enumFromInt(level), msg); }
Which is better if we have pub LogLevel in Extism zig-pdk, among other changes: extism/zig-pdk#37
pub
The text was updated successfully, but these errors were encountered:
nilslice
No branches or pull requests
very convenient to have a function like:
Which is better if we have
pub
LogLevel in Extism zig-pdk, among other changes: extism/zig-pdk#37The text was updated successfully, but these errors were encountered: