Skip to content

Commit

Permalink
fix: remove debug logs from Project
Browse files Browse the repository at this point in the history
  • Loading branch information
sinnwrig committed Oct 5, 2024
1 parent f2a7483 commit e968222
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Prowl.Editor/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,16 +322,12 @@ private static void GenerateCSProjectFiles(Project project, DirectoryInfo output
foreach (DirectoryInfo subdirectory in directory.GetDirectories())
directoriesToProcess.Push(subdirectory);

Runtime.Debug.Log("Searching directory: " + directory.Name);

if (string.Equals(directory.Name, "Editor", StringComparison.OrdinalIgnoreCase))
editorScripts.AddRange(directory.GetFiles("*.cs"));
else
nonEditorScripts.AddRange(directory.GetFiles("*.cs"));
}

Runtime.Debug.Log("Scripts: " + string.Join(" ", nonEditorScripts));

string propertyGroupTemplate =
@$"<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand Down

0 comments on commit e968222

Please sign in to comment.