Skip to content

Commit

Permalink
Update TwinpackServer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
iadonkey authored Feb 23, 2024
1 parent afbe845 commit 2bdf245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwinpackShared/TwinpackServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ public async Task PushAsync(IEnumerable<ConfigPlcProject> plcs, string configura

public async Task PullAsync(Config config, bool skipInternalPackages = false, IEnumerable<ConfigPlcPackage> filter = null, string cachePath = null, CancellationToken cancellationToken = default)
{
_logger.Info($"Pulling from Twinpack Server (Skipping internal packages: {skipInternalPackages})");
_logger.Info($"Pulling from Twinpack Server (skip internal packages: {(skipInternalPackages ? "true" : "false")})");
var plcs = config.Projects.SelectMany(x => x.Plcs);
var exceptions = new List<Exception>();
var handled = new List<ConfigPlcPackage>();
Expand Down

0 comments on commit 2bdf245

Please sign in to comment.