add some funktions to configure lnbs, satellites, diseqc...
[enigma2.git] / lib / dvb / db.cpp
index 7ed27d6b28e7cd563d3656dfcfcccb8086ae8129..04c03b94c850ea14c734fbf0bbb75e0655297767 100644 (file)
@@ -408,7 +408,6 @@ void eDVBDB::loadBouquet(const char *path)
                                        char buf[256];
                                        snprintf(buf, 256, "(type == %d) FROM BOUQUET \"%s\" ORDER BY bouquet", tmp.data[0], str.c_str());
                                        tmp.path = buf;
-                                       eDebug("read bouquet %s", tmp.toString().c_str());
                                }
                                list.push_back(tmp);
                                e = &list.back();
@@ -514,13 +513,11 @@ RESULT eDVBDB::getBouquet(const eServiceReference &ref, const eBouquet* &bouquet
        if ( pos != std::string::npos )
        {
                str.erase(0, pos+14);
-               eDebug("str now %s", str.c_str());
                pos = str.find('"');
                if ( pos != std::string::npos )
                        str.erase(pos);
                else
                        str.clear();
-               eDebug("str now %s", str.c_str());
        }
        if (str.empty())
        {
@@ -541,10 +538,7 @@ RESULT eDVBDB::getBouquet(const eServiceReference &ref, const eBouquet* &bouquet
 RESULT eDVBDB::startQuery(ePtr<iDVBChannelListQuery> &query, eDVBChannelQuery *q, const eServiceReference &source)
 {
        if ( q && q->m_bouquet_name.length() )
-       {
-               eDebug("bouquet");
                query = new eDVBDBBouquetQuery(this, source, q);
-       }
        else
                query = new eDVBDBQuery(this, source, q);
        return 0;