diff options
author | Michele Calgaro <[email protected]> | 2022-05-18 15:41:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-05-18 15:41:08 +0900 |
commit | eb5c989f90ef1f8faf29fb0b39e9c46257f56fc9 (patch) | |
tree | ab0ca327785f0d6034480535a5bb3a84ce609429 /src/apt.cpp | |
parent | 966cf44482c86484f80a24302a2781ab979750e1 (diff) | |
download | tdeio-apt-eb5c989f90ef1f8faf29fb0b39e9c46257f56fc9.tar.gz tdeio-apt-eb5c989f90ef1f8faf29fb0b39e9c46257f56fc9.zip |
Use dedicated kdDebug area.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/apt.cpp')
-rw-r--r-- | src/apt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/apt.cpp b/src/apt.cpp index fdc9751..b237a75 100644 --- a/src/apt.cpp +++ b/src/apt.cpp @@ -437,7 +437,7 @@ void AptProtocol::get ( const KURL& url ) for (QueryOptions::ConstIterator i = options.begin(); i != options.end(); ++i) m_query.addQueryItem(i.key(), i.data()); - kdDebug() << "Old url " << url << ", new url " << m_query << endl; + kdDebug(7130) << "Old url " << url << ", new url " << m_query << endl; if (m_query != url) { @@ -830,7 +830,7 @@ void AptProtocol::adept_batch(const TQString& query, const QueryOptions& options ip = SlaveBase::messageBox(QuestionYesNo,i18n("Do you want to remove the following %1 packages ?\n").arg(pcount).arg(options["package"])); } - kdDebug(DEBUG_ZONE) << command << endl; + kdDebug(7130) << command << endl; if (ip == KMessageBox::Yes) { @@ -934,7 +934,7 @@ extern "C" { TDEInstance instance( "tdeio_apt" ); if ( argc != 4 ) { - kdDebug( DEBUG_ZONE ) << "Usage: tdeio_apt protocol domain-socket1 domain-socket2" << endl; + kdDebug(7130) << "Usage: tdeio_apt protocol domain-socket1 domain-socket2" << endl; exit ( -1 ); } |