Answer the question
In order to leave comments, you need to log in
IE11 and incomplete information in Console.log(), how to overcome?
In all browsers, console.log() displays everything that is passed to it. In IE 11, when displaying a string, everything that exceeds approximately 1100 characters is truncated. How to deal with it?
Answer the question
In order to leave comments, you need to log in
Took a temporary solution - in 11 ie there is a method console.dirxml () There is no limit on the size of the output data. My data was in XML so this solved the problem
Apparently in ie 11 there is a limit on the number of characters displayed in the console. If my memory serves me, then nothing can be changed in the console, at least at the js level. Try alerting or outputting directly to the document while debugging the code.
Options:
* Log in parts
* Leave only the most critical in the logs
* Take an external logger
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question