We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d4fb7 commit 2477d2eCopy full SHA for 2477d2e
src/client.ts
@@ -76,6 +76,7 @@ export class TwilioServerlessApiClient extends events.EventEmitter {
76
private client: GotClient;
77
78
constructor(config: ClientConfig) {
79
+ debug.enable(process.env.DEBUG || '');
80
super();
81
this.config = config;
82
this.client = createGotClient(config);
@@ -86,6 +87,7 @@ export class TwilioServerlessApiClient extends events.EventEmitter {
86
87
* @returns {GotClient} A client instance with set-up credentials
88
*/
89
getClient(): GotClient {
90
91
return this.client;
92
}
93
0 commit comments