Skip to content

Commit

Permalink
[RELEASE] Version v0.1.6. Tessellate localhost instances now use serv…
Browse files Browse the repository at this point in the history
…er url instead of shortened url. Comments formatted.
  • Loading branch information
Scott Prue committed Nov 12, 2015
1 parent a8458a4 commit 204fa34
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Using Matter requires having created an application on [Tessellate](http://tesse

```html
<!-- Matter Library Bundle -->
<script src="http://cdn.kyper.io/js/matter/0.1.3/matter.js"></script>
<script src="http://cdn.kyper.io/js/matter/0.1.6/matter.js"></script>
```
#### Bower
Run `bower install --save kyper-matter`
Expand Down
6 changes: 2 additions & 4 deletions dist/matter.js
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,6 @@ return /******/ (function(modules) { // webpackBootstrap
// }
//Set log level from config
if (_config2['default'].logLevel) {
console.log('log level from config', _config2['default'].logLevel);
logLevel = _config2['default'].logLevel;
}
var logger = {
Expand All @@ -792,7 +791,6 @@ return /******/ (function(modules) { // webpackBootstrap
debug: function debug(logData) {
var msgArgs = buildMessageArgs(logData);
if (logLevel === 'trace' || logLevel === 'debug') {
// runConsoleMethod('debug', msgArgs);
runConsoleMethod('debug', msgArgs);
}
},
Expand Down Expand Up @@ -13255,11 +13253,11 @@ return /******/ (function(modules) { // webpackBootstrap
},
stage: {
serverUrl: 'http://tessellate-stage.elasticbeanstalk.com',
logLevel: 'info'
logLevel: 'debug'
},
prod: {
serverUrl: 'http://tessellate.elasticbeanstalk.com',
logLevel: 'warn'
logLevel: 'info'
}
},
tokenName: 'tessellate',
Expand Down
6 changes: 3 additions & 3 deletions dist/matter.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ var defaultConfig = {
},
stage: {
serverUrl: 'http://tessellate-stage.elasticbeanstalk.com',
logLevel: 'info'
logLevel: 'debug'
},
prod: {
serverUrl: 'http://tessellate.elasticbeanstalk.com',
logLevel: 'warn'
logLevel: 'info'
}
},
tokenName: 'tessellate',
Expand Down
2 changes: 0 additions & 2 deletions lib/utils/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ var logLevel = 'debug';
// }
//Set log level from config
if (_config2['default'].logLevel) {
console.log('log level from config', _config2['default'].logLevel);
logLevel = _config2['default'].logLevel;
}
var logger = {
Expand All @@ -32,7 +31,6 @@ var logger = {
debug: function debug(logData) {
var msgArgs = buildMessageArgs(logData);
if (logLevel === 'trace' || logLevel === 'debug') {
// runConsoleMethod('debug', msgArgs);
runConsoleMethod('debug', msgArgs);
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kyper-matter",
"version": "0.1.5",
"version": "0.1.6",
"description": "Library to provide simple application functionality like authentication and local/session/token storage for Tesselate applications.",
"main": "./lib/index.js",
"scripts": {
Expand Down

0 comments on commit 204fa34

Please sign in to comment.