aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconsole/data/logging.qml
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2018-11-06 14:55:47 +0100
committerMårten Nordheim <marten.nordheim@qt.io>2018-11-08 14:34:02 +0000
commit6fecfdc769314162d6c909c9ae0a85631964883f (patch)
treee9cedbbb0b064b4ca0ec362456af2bc2d4dff0c0 /tests/auto/qml/qqmlconsole/data/logging.qml
parent52519c7955b941db13a1800daf7ffaf5eeeecad2 (diff)
Use custom debug stream operator in console.log
Fallback for string-conversion was previously using hard-coded string template mimicing QVariant. Just use QVariant's debug stream operator which may include data from the contained type. Change-Id: I8243ba6b04d842a895ac3234bb54f6a4eed849f1 Fixes: QTBUG-60057 Done-With: Jędrzej Nowacki <jedrzej.nowacki@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests/auto/qml/qqmlconsole/data/logging.qml')
-rw-r--r--tests/auto/qml/qqmlconsole/data/logging.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlconsole/data/logging.qml b/tests/auto/qml/qqmlconsole/data/logging.qml
index 0764ad7545..8ed2dd73a1 100644
--- a/tests/auto/qml/qqmlconsole/data/logging.qml
+++ b/tests/auto/qml/qqmlconsole/data/logging.qml
@@ -68,6 +68,7 @@ QtObject {
console.log(1, ["ping","pong"], new Object, 2);
console.log(contextStringListProperty);
+ console.log(customObject);
try {
console.log(exception);