79735294

Date: 2025-08-14 10:56:49
Score: 1.5
Natty:
Report link

content of e.g. logging.h

#include <QDebug>
#define LOG(Verbosity) q##Verbosity().noquote().nospace()

then use it like:

#include "logging.h"

QString abc = "bla";

LOG(Info) << abc;
LOG(Debug) << abc;

cheers
Thilo

Reasons:
  • Blacklisted phrase (1): cheers
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thilo Cestonaro