How to hide console log in jhipster

Viewed 705

I have jhipster project and I want to hide console logs, I use angular, spring-boot

enter image description here

1 Answers

in your AppRoutingModule turn enableTracing to false:

{ useHash: true, enableTracing: DEBUG_INFO_ENABLED } 

should be:

{ useHash: true, enableTracing: false }
Related