Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ PublishScripts/
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
.nuget/

# Microsoft Azure Build Output
csx/
Expand Down
1 change: 0 additions & 1 deletion lib/PuppeteerSharp.Tests/TestConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public static class TestConstants
Browser = IsChrome ? SupportedBrowser.Chrome : SupportedBrowser.Firefox,
EnqueueAsyncMessages = Convert.ToBoolean(Environment.GetEnvironmentVariable("ENQUEUE_ASYNC_MESSAGES") ?? "false"),
Timeout = 0,
LogProcess = true,
#if NETCOREAPP
EnqueueTransportMessages = false
#else
Expand Down
4 changes: 4 additions & 0 deletions lib/PuppeteerSharp/LaunchOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ public bool Devtools
/// <summary>
/// Logs process counts after launching chrome and after exiting.
/// </summary>
/// <remarks>
/// This property is obsolete and has no effect. It will be removed in a future version.
/// </remarks>
[Obsolete("This property has no effect and will be removed in a future version.")]
public bool LogProcess { get; set; }

/// <summary>
Expand Down
Loading