From 8c47e3bf342d4c289282bd9afe48ba35f9684ec1 Mon Sep 17 00:00:00 2001 From: Adrien JUND Date: Tue, 20 Mar 2018 10:13:37 +0100 Subject: [PATCH] Display pdbPath in case of no source files found error. --- src/GitLink/Linker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitLink/Linker.cs b/src/GitLink/Linker.cs index 7da78a5..83e0930 100644 --- a/src/GitLink/Linker.cs +++ b/src/GitLink/Linker.cs @@ -84,7 +84,7 @@ public static class Linker _sourceFilesList = GetSourceFilesFromPdb(pdbPath, !options.SkipVerify); if (!_sourceFilesList.Any()) { - Log.Error("No source files were found in the PDB. If you're PDB is a native one you should use -a option."); + Log.Error($"No source files were found in the PDB: {pdbPath}. If you're PDB is a native one you should use -a option."); return false; } }