File: logger.cpp

package info (click to toggle)
kcachegrind 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,964 kB
  • sloc: cpp: 32,149; xml: 403; perl: 325; python: 235; sh: 8; makefile: 6
file content (59 lines) | stat: -rw-r--r-- 1,247 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
    This file is part of KCachegrind.

    SPDX-FileCopyrightText: 2008-2016 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>

    SPDX-License-Identifier: GPL-2.0-only
*/

/*
 * Default implementation for notification dispatcher: use qDebug
 */

#include "logger.h"

#include <QtDebug>


/// Logger

Logger::~Logger()
{}

void Logger::loadStart(const QString& filename)
{
    _filename = filename;
    _timer.setSingleShot(true);
    _timer.start(1000);
    qDebug() << "Loading" << filename;
}

void Logger::loadProgress(int progress)
{
    // print progress at most every second
    if (_timer.isActive()) return;
    _timer.start(1000);

    qDebug() << "Loading" << _filename << "(" << progress << "%)";
}

void Logger::loadWarning(int line, const QString& msg)
{
    qDebug() << "Warning in " << _filename << ", line" << line
             << ":" << msg;
}

void Logger::loadError(int line, const QString& msg)
{
    qDebug() << "Error in " << _filename << ", line" << line
             << ":" << msg;
}

void Logger::loadFinished(const QString& msg)
{
    _timer.stop();
    if (msg.isEmpty())
        qDebug() << "File" << _filename << "loaded.";
    else
        qDebug() << "Error loading file" << _filename << ":" << qPrintable(msg);
}