mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
bb411e4ae1
This was caused by -L calling setLogFormat() again, which caused the creation of a new progress bar without destroying the old one. So we had two progress bars clobbering each other. We should change 'logger' to be a smart pointer, but I'll do that in a future PR. Fixes #6931.
13 lines
136 B
C++
13 lines
136 B
C++
#pragma once
|
|
|
|
#include "logging.hh"
|
|
|
|
namespace nix {
|
|
|
|
Logger * makeProgressBar();
|
|
|
|
void startProgressBar();
|
|
|
|
void stopProgressBar();
|
|
|
|
}
|