diff options
author | John Hodge <tpg@ucc.asn.au> | 2017-10-14 09:31:42 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2017-10-14 09:31:42 +0800 |
commit | b5709f13f54f04451812a5695238021fcf8c1750 (patch) | |
tree | 1636786960ea074351040c92acf000186fd95961 /tools/minicargo/repository.cpp | |
parent | c7f6e1b5921ff447f075f3ae153066d69252f75e (diff) | |
download | mrust-b5709f13f54f04451812a5695238021fcf8c1750.tar.gz |
minicargo - Reduce logspam a little
Diffstat (limited to 'tools/minicargo/repository.cpp')
-rw-r--r-- | tools/minicargo/repository.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/minicargo/repository.cpp b/tools/minicargo/repository.cpp index 300d84ab..c0b39b5a 100644 --- a/tools/minicargo/repository.cpp +++ b/tools/minicargo/repository.cpp @@ -37,7 +37,7 @@ void Repository::load_vendored(const ::helpers::path& path) if( ! ::std::ifstream(manifest_path.str()).good() ) continue ; - DEBUG("Opening manifest " << manifest_path); + //DEBUG("Opening manifest " << manifest_path); // Scan the manifiest until both the name and version are set bool name_set = false; @@ -70,7 +70,7 @@ void Repository::load_vendored(const ::helpers::path& path) } } - DEBUG("Package '" << name << "' v" << ver); + //DEBUG("Package '" << name << "' v" << ver); if(name == "") continue ; |