Skip to content
Extraits de code Groupes Projets

Add clean logs support + dependent MR

Fusionnées Kubat a demandé de fusionner log-macros vers master
Comparer et Afficher la dernière version
5 fichiers
+ 32
24
Comparer les modifications
  • Côte à côte
  • En ligne
Fichiers
5
@@ -8,10 +8,10 @@ void
AudioSubDocument::initFromPath(const QString &path)
{
if (contextPtr)
qDebug() << "Replacing the audio contetx by a new one for file" << path;
logDebug() << "Replacing the audio contetx by a new one for file " << VIVY_LOG_QUOTED(path);
contextPtr.reset(new AudioContext(path)); // May throw
qDebug() << "Audio OK for" << path;
logDebug() << "Audio OK for " << VIVY_LOG_QUOTED(path);
}
QString
Chargement en cours