diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/App.js | 6 | ||||
| -rw-r--r-- | src/Chat.js | 1 | 
2 files changed, 3 insertions, 4 deletions
| @@ -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": | 
