diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-18 15:41:08 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-18 16:03:02 +0900 |
commit | c46af70011cf1050c6ed158cc42d3fcaa67e791d (patch) | |
tree | 9b2057b8fe09128264e2696c7a2bbe123bff9222 /src/apt.cpp | |
parent | cb0f5bc7df4a16224d017b2b987a0b05a6c98812 (diff) | |
download | tdeio-apt-c46af700.tar.gz tdeio-apt-c46af700.zip |
Use dedicated kdDebug area.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit eb5c989f90ef1f8faf29fb0b39e9c46257f56fc9)
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 ); } |