Only log error code

This commit is contained in:
Kevin Sawicki 2014-06-13 15:12:06 -07:00
parent 87fcc39045
commit ca86e0258f

View File

@ -20,7 +20,7 @@ function loadEnvironmentVariables(filePath) {
process.env[key] = value;
}
} catch(error) {
console.error("Failed to load environment variables: " + filePath, error);
console.error("Failed to load environment variables: " + filePath, error.code);
}
}