Remove debug code

This commit is contained in:
Samer Albahra
2015-07-03 02:54:58 -05:00
parent 288733a190
commit 859bce73dd

View File

@@ -204,7 +204,7 @@ function calculateWeatherScale( adjustmentMethod, adjustmentOptions, weather ) {
humidityFactor = ( 30 - weather.humidity ),
tempFactor = ( ( temp - 70 ) * 4 ),
precipFactor = ( weather.precip * -200 );
console.log(temp, humidityFactor, tempFactor, precipFactor);
// Apply adjustment options, if provided, by multiplying the percentage against the factor
if ( adjustmentOptions ) {
if ( adjustmentOptions.hasOwnProperty( "h" ) ) {