aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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":