Skip to content

Commit

Permalink
Adjust 'Failed to set up high priority' message
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin committed Oct 19, 2023
1 parent 7b342f5 commit e170684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BenchmarkDotNet/Extensions/ProcessExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static void EnsureHighPriority(this Process process, ILogger logger)
}
catch (Exception ex)
{
logger.WriteLineError($"Failed to set up high priority. Make sure you have the right permissions. Message: {ex.Message}");
logger.WriteLineInfo($"// Failed to set up high priority ({ex.Message}). In order to run benchmarks with high priority, make sure you have the right permissions.");
}
}

Expand Down

0 comments on commit e170684

Please sign in to comment.