Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
JavaScript debugging suddenly stopped working
Message
 
 
À
Tous
Information générale
Forum:
Visual Studio
Catégorie:
Débogage
Titre:
JavaScript debugging suddenly stopped working
Divers
Thread ID:
01654577
Message ID:
01654577
Vues:
48
Hi everybody,

I've been debugging using VS 2017 and JavaScript debugging fine in Google Chrome.

Today it is not working anymore and I could not figure why. The JavaScript debugging is enabled in VS 2017.

I re-started my laptop but unfortunately the problem persists.

What may be the problem?

Thanks in advance.

UPDATE. I tried with Edge - same problem, JavaScript code is not debugging :(

Also, this code
var getMatrixDescription = function (id1, id2) {
            log.debug("Getting Matrix Description for rowId = " + id1 + " columnId = " + id2);
            var description = "";
            if ($scope.currentMatrixTemplate) {
                var rowDescription = _.find($scope.currentMatrixTemplate.templateRowValues, ["tmplatId", id1]).valueName.trim();
                var columnDescription = _.find($scope.currentMatrixTemplate.templateRowValues, ["tmplatId", id2]).valueName.trim();
                description = rowDescription + ", " +  columnDescription;
            }
            log.debug("Description is " + description);
            return description;
        }
I see the first line in the Console, but I never see the last line. So, either I got an error or the description is null.

Really hard to be without normal debugger :(
If it's not broken, fix it until it is.


My Blog
Répondre
Fil
Voir

Click here to load this message in the networking platform