Is there a way to turn off all debugging logs in Tensorflow JS similar to what can be done in Python with setting an environment variable and calling a function?
Disable Debugging in Tensorflow (Python)
According to the top answer:
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' # or any {'0', '1', '2'}
import tensorflow as tf
tf.get_logger().setLevel('INFO')
How would one accomplish this for JavaScript?