Skip to content

Commit

Permalink
Print logo in console
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospassos committed Apr 20, 2020
1 parent 2e92b8f commit 1143b41
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ export default class Sdk {
const logger = container.getLogger();
const {appId, tokenScope} = container.getConfiguration();

logger.debug(
'\n\n'
+ ' ██████ ██████  ██████  ██████ ████████ \n'
+ '██      ██   ██ ██    ██ ██         ██    \n'
+ '██  ██████  ██  ██ ██  ██    \n'
+ '██  ██   ██ ██  ██ ██  ██    \n'
+ ' ██████ ██  ██  ██████   ██████  ██    \n'
+ '\n',
);

logger.info(`Initializing SDK v${VERSION}...`);
logger.debug(`App ID: ${appId}`);

Expand Down

0 comments on commit 1143b41

Please sign in to comment.