Header:

#define TRACE_ERROR(s)                      \
{
  ...
  char TraceBuffer[512];
  sprintf(TraceBuffer, "%s\t(%s:%d)", s, __FILE__, __LINE__);
  DebugErrTrace(TraceBuffer);
  ...
}

Implementation:

void DebugErrTrace(char *String, ...) {
  ...
  qDebug() << String;
}

The above spits out a line of debug trace, which might look something like

ERROR File Missing! (..\trunk\Common\FileManager.cpp:102)

in Qt Creator's debug console.

I've noticed that Qt's own error messages e.g.

Object::connect: No such slot cClass::Method(QString) in ..\trunk\Components\Class.cpp:301

create what looks like a hyperlink around the __FILE__:__LINE__ part of the debug line, linking to the line which caused the problem. Is there any way I can I do this with my own debug output?

Cheers, Sam

link|improve this question

Have you tried making the tab into a space, or removing the parentheses around the file/line pair in the output? Maybe Qt Creator is using some other method of outputting its messages? – Joachim Pileborg Oct 27 '11 at 13:16
@JoachimPileborg: I hadn't thought to try that, but it didn't work. Thanks anyway! – sjwarner Oct 27 '11 at 13:27
2  
Stepping into QObject::connect() shows that Qt's debug message is generated with qWarning (see QObject:err_method_notfound() in Qt.4.7.4). However, using a similar qWarning("Test in %s:%i", __FILE__, __LINE__ ); doesn't give me a linked message either. – Robin Oct 27 '11 at 13:31
feedback

1 Answer

up vote 3 down vote accepted

According to Qt Creator source code (there), the hyperlinks are only created for lines matching these regular expressions:

"^(?:\\[Qt Message\\] )?(file:///.+:\\d+(?::\\d+)?):"
"Object::.*in (.*:\\d+)"
"ASSERT: .* in file (.+, line \\d+)"
"^   Loc: \\[(.*)\\]"

So the simplest lines you could construct look like this:

qWarning("file:///%s:%i: %s", __FILE__, __LINE__, "your message");
qWarning("   Loc: [%s:%i] %s", __FILE__, __LINE__, "your message");

Qt Creator doesn't seem to care if the path after "file:///" is absolute or not.

link|improve this answer
Works for me, thanks! – Robin Oct 27 '11 at 17:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.