Quellcode durchsuchen

Tweak compile log message

default_compile_flags
vector-of-bool vor 5 Jahren
Ursprung
Commit
2d7c1e3473
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/dds/compile.cpp

+ 2
- 2
src/dds/compile.cpp Datei anzeigen

@@ -14,7 +14,7 @@ using namespace dds;
void file_compilation::compile(const toolchain& tc) const {
fs::create_directories(obj.parent_path());

spdlog::info("[{}] Compile file: {}",
spdlog::info("[{}] Compile: {}",
owner_name,
fs::relative(source.path, rules.base_path()).string());
auto start_time = std::chrono::steady_clock::now();
@@ -31,7 +31,7 @@ void file_compilation::compile(const toolchain& tc) const {
auto end_time = std::chrono::steady_clock::now();
auto dur_ms = std::chrono::duration_cast<std::chrono::milliseconds>(end_time - start_time);

spdlog::info("[{}] Compile file: {} - {:n}ms",
spdlog::info("[{}] Compile: {} - {:n}ms",
owner_name,
fs::relative(source.path, rules.base_path()).string(),
dur_ms.count());

Laden…
Abbrechen
Speichern