forked from lix-project/lix
b8a0e9a9b8
Keep the header minimal and clean
13 lines
270 B
C++
13 lines
270 B
C++
#include "log-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
std::optional<std::string> LogStore::getBuildLog(const StorePath & path) {
|
|
auto maybePath = getBuildDerivationPath(path);
|
|
if (!maybePath)
|
|
return std::nullopt;
|
|
return getBuildLogExact(maybePath.value());
|
|
}
|
|
|
|
}
|