Skip to content

Commit

Permalink
ehhh... i don't understand...
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavrax committed Feb 6, 2024
1 parent 97f7b31 commit 00c55e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Api/PubnubApi/Pubnub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ static Pubnub()

public ISubscribeOperation<T> Subscribe<T>()
{
System.Console.WriteLine("Subscribe<T> called");
System.Diagnostics.Trace.WriteLine("Subscribe<T> called");

Check failure on line 46 in src/Api/PubnubApi/Pubnub.cs

View workflow job for this annotation

GitHub Actions / Acceptance tests

The type or namespace name 'Trace' does not exist in the namespace 'System.Diagnostics' (are you missing an assembly reference?)

Check failure on line 46 in src/Api/PubnubApi/Pubnub.cs

View workflow job for this annotation

GitHub Actions / Acceptance tests

The type or namespace name 'Trace' does not exist in the namespace 'System.Diagnostics' (are you missing an assembly reference?)
if (pubnubConfig[InstanceId].EnableEventEngine)
{
System.Console.WriteLine("Subscribe<T> called with EnableEventEngine");
System.Diagnostics.Trace.WriteLine("Subscribe<T> called with EnableEventEngine");

Check failure on line 49 in src/Api/PubnubApi/Pubnub.cs

View workflow job for this annotation

GitHub Actions / Acceptance tests

The type or namespace name 'Trace' does not exist in the namespace 'System.Diagnostics' (are you missing an assembly reference?)

Check failure on line 49 in src/Api/PubnubApi/Pubnub.cs

View workflow job for this annotation

GitHub Actions / Acceptance tests

The type or namespace name 'Trace' does not exist in the namespace 'System.Diagnostics' (are you missing an assembly reference?)
EndPoint.SubscribeOperation2<T> subscribeOperation = new EndPoint.SubscribeOperation2<T>(pubnubConfig.ContainsKey(InstanceId) ? pubnubConfig[InstanceId] : null, JsonPluggableLibrary, pubnubUnitTest, pubnubLog, null, tokenManager, new SubscribeEventEngineFactory(),InstanceId ,this);
subscribeOperation.SubscribeListenerList = subscribeCallbackListenerList;

Expand All @@ -56,7 +56,7 @@ public ISubscribeOperation<T> Subscribe<T>()
}
else
{
System.Console.WriteLine("Subscribe<T> called without EnableEventEngine");
System.Diagnostics.Trace.WriteLine("Subscribe<T> called without EnableEventEngine");

Check failure on line 59 in src/Api/PubnubApi/Pubnub.cs

View workflow job for this annotation

GitHub Actions / Acceptance tests

The type or namespace name 'Trace' does not exist in the namespace 'System.Diagnostics' (are you missing an assembly reference?)

Check failure on line 59 in src/Api/PubnubApi/Pubnub.cs

View workflow job for this annotation

GitHub Actions / Acceptance tests

The type or namespace name 'Trace' does not exist in the namespace 'System.Diagnostics' (are you missing an assembly reference?)
EndPoint.SubscribeOperation<T> subscribeOperation = new EndPoint.SubscribeOperation<T>(pubnubConfig.ContainsKey(InstanceId) ? pubnubConfig[InstanceId] : null, JsonPluggableLibrary, pubnubUnitTest, pubnubLog, null, tokenManager, this);
//subscribeOperation.CurrentPubnubInstance(this);
savedSubscribeOperation = subscribeOperation;
Expand Down

0 comments on commit 00c55e0

Please sign in to comment.