Skip to content

Commit

Permalink
Version 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
James Criscuolo committed Dec 23, 2020
1 parent 0c92a23 commit 84da08e
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 3 deletions.
13 changes: 13 additions & 0 deletions docs/core/sip.js.logger.level.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [sip.js](./sip.js.md) &gt; [Logger](./sip.js.logger.md) &gt; [level](./sip.js.logger.level.md)

## Logger.level property

<b>Signature:</b>

```typescript
get level(): Levels;

set level(newLevel: Levels);
```
6 changes: 6 additions & 0 deletions docs/core/sip.js.logger.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ export declare class Logger
| --- | --- | --- |
| [(constructor)(logger, category, label)](./sip.js.logger._constructor_.md) | | Constructs a new instance of the <code>Logger</code> class |

## Properties

| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [level](./sip.js.logger.level.md) | | <code>Levels</code> | |

## Methods

| Method | Modifiers | Description |
Expand Down
3 changes: 3 additions & 0 deletions etc/core/sip.js.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,9 @@ export class Logger {
// (undocumented)
error(content: string): void;
// (undocumented)
get level(): Levels;
set level(newLevel: Levels);
// (undocumented)
log(content: string): void;
// (undocumented)
warn(content: string): void;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sip.js",
"title": "SIP.js",
"description": "A SIP library for JavaScript",
"version": "0.17.1",
"version": "0.18.0",
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIBRARY_VERSION = "0.17.1";
export const LIBRARY_VERSION = "0.18.0";

0 comments on commit 84da08e

Please sign in to comment.