aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Renard 2020-03-09 12:10:16 -0300
committerLibravatar Renard 2020-03-09 12:10:16 -0300
commit21e24d597fe7f7bfff5a587540784482a301be0a (patch)
tree9ecdd035206586ffb631ac56a12349c877a286a6
parenta05cf36bc811e6aa711cac7a83e6af2fb54d0619 (diff)
downloadbairadio-app-21e24d597fe7f7bfff5a587540784482a301be0a.tar.gz
bairadio-app-21e24d597fe7f7bfff5a587540784482a301be0a.tar.xz
bairadio-app-21e24d597fe7f7bfff5a587540784482a301be0a.zip
Consola solo en development build
-rw-r--r--src/App.js6
-rw-r--r--src/Chat.js1
2 files changed, 3 insertions, 4 deletions
diff --git a/src/App.js b/src/App.js
index 9d70608..71ce407 100644
--- a/src/App.js
+++ b/src/App.js
@@ -45,7 +45,7 @@ class App extends Component {
return prevCount === this.streamCount;
}
- log(object) {
+ debug(object) {
if (process.env.NODE_ENV === "development") {
console.log(object);
}
@@ -108,7 +108,7 @@ class App extends Component {
fetch("https://bienvenidoainternet.org:8443/status-json.xsl")
.then(response => response.json())
.then(result => {
- this.log(result);
+ this.debug(result);
this.checkStream(result);
const source = result.icestats.source;
if (source !== undefined) {
@@ -179,7 +179,7 @@ class App extends Component {
text: `[${stream.listeners}] ${stream.server_name} - ${stream.server_description}`
})
);
- console.log(streams);
+ this.debug(streams);
this.setState({
multipleSources: true,
streamsAvailable: streams,
diff --git a/src/Chat.js b/src/Chat.js
index 685524e..a90a5aa 100644
--- a/src/Chat.js
+++ b/src/Chat.js
@@ -80,7 +80,6 @@ class Chat extends Component {
}
processChatMessage(line) {
- console.log("<< " + line);
const args = line.split(":");
switch (args[0]) {
case "MSG":