Skip to content

Commit

Permalink
Merge pull request #4 from Leh2/patch-1
Browse files Browse the repository at this point in the history
Add file name to error message when a file can't be written
  • Loading branch information
jeremydmiller committed Feb 19, 2024
2 parents 6f0fb3e + f3e9794 commit b7ee2ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JasperFx.RuntimeCompiler/CodeFileExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ public static void WriteCodeFile(this ICodeFile file, ICodeFileCollection parent
}
catch (Exception e)
{
Console.WriteLine("Unable to write code file");
Console.WriteLine("Unable to write code file for " + file.FileName);
Console.WriteLine(e.ToString());
}
}
}
}
}

0 comments on commit b7ee2ff

Please sign in to comment.