diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-30 16:05:02 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-30 16:05:02 +0100 | 
| commit | f7d02d1cd95bbfe5e42c73198bbde73c6ad3b69a (patch) | |
| tree | 8f5a8a77c5e944ed244d2ab16dfd4b14850df722 | |
| parent | IceTray compat fix (diff) | |
| download | gentoobrowse-api-f7d02d1cd95bbfe5e42c73198bbde73c6ad3b69a.tar.bz2 gentoobrowse-api-f7d02d1cd95bbfe5e42c73198bbde73c6ad3b69a.tar.xz gentoobrowse-api-f7d02d1cd95bbfe5e42c73198bbde73c6ad3b69a.zip  | |
Remove ebuild update debug
| -rw-r--r-- | gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp b/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp index 7d55440..7cbd902 100644 --- a/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp +++ b/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp @@ -65,7 +65,7 @@ namespace Gentoo {  				m->bindParamS(6, categoryName);  				m->bindParamS(7, packageName);  				m->forEachRow<int64_t, bool, int64_t>([this,dbc,&ecp,&fn] (auto ebuildId, auto newest, auto packageId) { -						fprintf(stderr, "Created ebuild %ld for %s (%s)\n", ebuildId, fn.c_str(), newest ? "yes" : "no"); +						// fprintf(stderr, "Created ebuild %ld for %s (%s)\n", ebuildId, fn.c_str(), newest ? "yes" : "no");  						this->perEbuildUpdates(dbc, ecp, ebuildId, newest, packageId);  					});  			} @@ -87,7 +87,7 @@ namespace Gentoo {  				m->bindParamS(5, matches.fetch(1)); // package  				m->bindParamS(6, matches.fetch(2)); // version  				m->forEachRow<int64_t, bool, int64_t>([this,dbc,&ecp,&fn] (auto ebuildId, auto newest, auto packageId) { -						fprintf(stderr, "Updated ebuild %ld for %s (%s)\n", ebuildId, fn.c_str(), newest ? "yes" : "no"); +						// fprintf(stderr, "Updated ebuild %ld for %s (%s)\n", ebuildId, fn.c_str(), newest ? "yes" : "no");  						this->perEbuildUpdates(dbc, ecp, ebuildId, newest, packageId);  					});  			}  | 
