Remove redundant lines

This commit is contained in:
alesapin 2022-08-21 18:21:01 +02:00
parent 704d7fdc41
commit 354f4e90eb

View File

@ -29,14 +29,12 @@ namespace
BackupEntryFromSmallFile::BackupEntryFromSmallFile(const String & file_path_, const std::optional<UInt128> & checksum_)
: BackupEntryFromMemory(readFile(file_path_), checksum_), file_path(file_path_)
{
LOG_DEBUG(&Poco::Logger::get("DEBUG"), "SMALL FILE {}", file_path);
}
BackupEntryFromSmallFile::BackupEntryFromSmallFile(
const DiskPtr & disk_, const String & file_path_, const std::optional<UInt128> & checksum_)
: BackupEntryFromMemory(readFile(disk_, file_path_), checksum_), disk(disk_), file_path(file_path_)
{
LOG_DEBUG(&Poco::Logger::get("DEBUG"), "SMALL FILE {}", file_path);
}
}