Skip to content

Commit b531b94

Browse files
committed
remove debug log message
1 parent a5d4a8c commit b531b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform/desktop_notifications/desktopnotify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ QString DesktopNotify::sanitize_text_for_notifications(const QString& input_text
4848
{
4949
QString output_text = QString(input_text);
5050
output_text.replace(QRegularExpression("[^a-zA-Z0-9 _:]"), "_"); // allow only a A-Z and 0-9 and "_" and " " and ":" chars
51-
qDebug() << "sanitize_text_for_notifications: input:" << input_text << "output:" << output_text;
51+
// qDebug() << "sanitize_text_for_notifications: input:" << input_text << "output:" << output_text;
5252
return output_text;
5353
}
5454

0 commit comments

Comments
 (0)