File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/stream_feed/lib/src/client Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class StreamFeedClientImpl implements StreamFeedClient {
41
41
this .appId,
42
42
this .fayeUrl = 'wss://faye-us-east.stream-io-api.com/faye' ,
43
43
this .runner = Runner .client,
44
- Level logLevel = Level .WARNING ,
44
+ this . logLevel = Level .WARNING ,
45
45
LogHandlerFunction ? logHandlerFunction,
46
46
StreamAPI ? api,
47
47
StreamHttpClientOptions ? options,
@@ -87,6 +87,7 @@ class StreamFeedClientImpl implements StreamFeedClient {
87
87
return true ;
88
88
}
89
89
90
+ final Level logLevel;
90
91
final String apiKey;
91
92
final String ? appId;
92
93
Token ? userToken;
@@ -123,7 +124,7 @@ class StreamFeedClientImpl implements StreamFeedClient {
123
124
},
124
125
};
125
126
126
- late final FayeClient _faye = FayeClient (fayeUrl)
127
+ late final FayeClient _faye = FayeClient (fayeUrl, logLevel : logLevel )
127
128
..addExtension (_authExtension);
128
129
129
130
late final _subscriptions = < String , _FeedSubscription > {};
You can’t perform that action at this time.
0 commit comments