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
print()
Plain print() calls now generate INFO messages on Supabase.
How can we implement a full logging system with different logging levels?
The text was updated successfully, but these errors were encountered:
Workaround for now:
Add the dependency js_bindings.
js_bindings
Add the import import 'package:js_bindings/js_bindings.dart' as interop;
import 'package:js_bindings/js_bindings.dart' as interop;
call interop.window.console.log('logging');
interop.window.console.log('logging');
Edit:
Nvm apparently print does the same.
Sorry, something went wrong.
Thanks, I will try print() again 🤔
Nevertheless we need something that is traced in Supabase functions console.
Hi there.
It looks that plain print() calls are making the job now!
Should we add some references in docs to this?
No branches or pull requests
Plain
print()
calls now generate INFO messages on Supabase.How can we implement a full logging system with different logging levels?
The text was updated successfully, but these errors were encountered: