refactor(3p/nix/libmain): Replace logging.h with glog

This commit is contained in:
Vincent Ambo 2020-05-19 01:03:09 +01:00
parent 505b6b044b
commit d0c44425e1
4 changed files with 58 additions and 98 deletions

View file

@ -38,13 +38,11 @@ void printGCWarning();
class Store;
void printMissing(ref<Store> store, const PathSet& paths,
Verbosity lvl = lvlInfo);
void printMissing(ref<Store> store, const PathSet& paths);
void printMissing(ref<Store> store, const PathSet& willBuild,
const PathSet& willSubstitute, const PathSet& unknown,
unsigned long long downloadSize, unsigned long long narSize,
Verbosity lvl = lvlInfo);
unsigned long long downloadSize, unsigned long long narSize);
string getArg(const string& opt, Strings::iterator& i,
const Strings::iterator& end);