Removed loglevel

Removed dependency which we're not actually using for anything.

Change-Id: I4ced0fa4437b7c731c6a8c2e6bc7fa65be901820
This commit is contained in:
Michael Krotscheck 2016-08-24 13:43:16 -07:00
parent 193668fc17
commit e96c828cd6
3 changed files with 1 additions and 8 deletions

View File

@ -29,8 +29,7 @@
"homepage": "http://www.openstack.org/",
"dependencies": {
"babel-polyfill": "^6.9.1",
"isomorphic-fetch": "^2.2.1",
"loglevel": "^1.4.1"
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",

View File

@ -1,8 +1,5 @@
import 'babel-polyfill';
import 'isomorphic-fetch';
import log from 'loglevel';
log.setLevel('INFO');
export default class Test {
getUrl (url) {

View File

@ -1,8 +1,5 @@
import log from 'loglevel';
import Http from './util/http';
log.setLevel('INFO');
export default class Keystone {
constructor (cloudConfig) {