Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

Debugging QML

Console API

Log

console.log, console.debug, console.info, console.warn and console.error can be used to print debugging information to the console. For example:

 function f(a, b) {
   console.log("a is ", a, "b is ", b);
 }

The output is generated using the qDebug, qWarning, qCritical methods in C++ (see also http://doc.qt.nokia.com/latest/debug.html#warning-and-debugging-messages).

Setting the environment variable QML_CONSOLE_EXTENDED also prints the source code location of the call.

Assert

console.assert tests that an expression is true. If not, it will write an optional message to the console and print the stack trace.

 function f() {
   var x = 12
   console.assert(x == 12, "This will pass");
   console.assert(x > 12, "This will fail");
 }

Timer

console.time and console.timeEnd log the time (in milliseconds) that was spent between the calls. Both take a string argument that identifies the measurement. For example:

 function f() {
     console.time("wholeFunction");
     console.time("firstPart");
     // first part
     console.timeEnd("firstPart");
     // second part
     console.timeEnd("wholeFunction");
 }

Trace

console.trace prints the stack trace of JavaScript execution at the point where it was called. The stack trace info contains function name, file name, line number and column number. The stack trace is limited to last 10 stack frames.

Count

console.count prints the current number of times a particular piece of code has been executed, along with a message. That is,

 function f() {
   console.count("f called");
 }

will print f called: 1, f called: 2 ... whenever f() is executed.

Profile

console.profile turns on the QML and JavaScript profilers. Nested calls are not supported and a warning will be printed to the console.

console.profileEnd turns off the QML and JavaScript profilers. Calling this function without a previous call to console.profile will print a warning to the console. A profiling client should have been attached before this call to receive and store the profiling data. For example:

 function f() {
     console.profile();
     //Call some function that needs to be profiled.
     //Ensure that a client is attached before ending
     //the profiling session.
     console.profileEnd();
 }

Exception

console.exception prints an error message together with the stack trace of JavaScript execution at the point where it is called.

Debugging Transitions

When a transition doesn't look quite right, it can be helpful to view it in slow motion to see what is happening more clearly. This functionality is supported in the QML Viewer tool: to enable this, click on the "Debugging" menu, then "Slow Down Animations".

Debugging module imports

The QML_IMPORT_TRACE environment variable can be set to enable debug output from QML's import loading mechanisms.

For example, for a simple QML file like this:

 import QtQuick 2.0

 Rectangle { width: 100; height: 100 }

If you set QML_IMPORT_TRACE=1 before running the QML Viewer (or your QML C++ application), you will see output similar to this:

 QQmlImportDatabase::addImportPath "/qt-sdk/imports"
 QQmlImportDatabase::addImportPath "/qt-sdk/bin/QMLViewer.app/Contents/MacOS"
 QQmlImportDatabase::addToImport 0x106237370 "." -1.-1 File as ""
 QQmlImportDatabase::addToImport 0x106237370 "Qt" 4.7 Library as ""
 QQmlImportDatabase::resolveType "Rectangle" = "QDeclarativeRectangle"

Debugging with Qt Creator

Qt Creator provides built-in support for QML debugging. QML projects and standalone C++ applications that utilize QML can be debugged on desktops as well as on remote devices. For more information, see the Qt Creator Manual.

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web