output the actual value set in WebEntityItem

This commit is contained in:
Stephen Birarda 2017-01-23 11:50:05 -08:00
parent d7651e9838
commit f02832ca71

View file

@ -128,8 +128,8 @@ void WebEntityItem::setSourceUrl(const QString& value) {
auto newURL = QUrl::fromUserInput(value);
if (newURL.isValid()) {
qCDebug(entities) << "Setting web entity source URL to " << value;
_sourceUrl = newURL.toDisplayString();
qCDebug(entities) << "Changed web entity source URL to " << _sourceUrl;
} else {
qCDebug(entities) << "Clearing web entity source URL since" << value << "cannot be parsed to a valid URL.";
}