diff --git a/front/src/views/federation/LibraryDetail.vue b/front/src/views/federation/LibraryDetail.vue
index 9dfe50755..c64ca2cf2 100644
--- a/front/src/views/federation/LibraryDetail.vue
+++ b/front/src/views/federation/LibraryDetail.vue
@@ -46,6 +46,7 @@
|
+
Library size |
@@ -98,10 +100,12 @@
+
+
Tracks available in this library
-
+
@@ -158,9 +162,9 @@ export default {
let self = this
params[attr] = newValue
axios.patch('federation/libraries/' + this.id + '/', params).then((response) => {
- console.log(`${attr} was updated succcessfully to ${newValue}`)
+ logger.default.info(`${attr} was updated succcessfully to ${newValue}`)
}, (error) => {
- console.log(`Error while setting ${attr} to ${newValue}`, error)
+ logger.default.error(`Error while setting ${attr} to ${newValue}`, error)
self.object[attr] = !newValue
})
}
|