Created
May 13, 2013 23:49
-
-
Save lambdabaa/5572514 to your computer and use it in GitHub Desktop.
Adding test agent logging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1949 if (!this.envQueue[envId]) { | |
| 1950 console.log('envId = ' + envId); | |
| 1951 console.log('currentEnv = ' + currentEnv); | |
| 1952 console.log('this.envQueue[envId] = ' + this.envQueue[envId]); | |
| 1953 console.log('event = ' + event); | |
| 1954 console.log('data = ' + data); | |
| 1955 console.log('data.toString() = ' + data.toString()); | |
| 1956 return console.log( | |
| 1957 'Attempting to log an test event for the environment: "' + envId + | |
| 1958 '" but it does not exist. stack: \n' + (new Error()).stack | |
| 1959 ); | |
| 1960 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment