Deactivate the logs of TensorFlow with M1

I have been working with TensorFlow on my M1, however I have tried several times to deactivate the logs from TensorFlow and nothing seems to work.

Could someone provide a way to deactivate them?

Answered by Frameworks Engineer in 708100022

Hi,

I am assuming these are the core Tensorflow VLOGs you are referring to ? They are activated by:

export TF_CPP_MAX_VLOG_LEVEL=3
export TF_CPP_MAX_LOG_LEVEL=0

and you can deactivate them by setting the VLOG=0

export TF_CPP_MAX_VLOG_LEVEL=0
Accepted Answer

Hi,

I am assuming these are the core Tensorflow VLOGs you are referring to ? They are activated by:

export TF_CPP_MAX_VLOG_LEVEL=3
export TF_CPP_MAX_LOG_LEVEL=0

and you can deactivate them by setting the VLOG=0

export TF_CPP_MAX_VLOG_LEVEL=0
Deactivate the logs of TensorFlow with M1
 
 
Q