Skip to content
Snippets Groups Projects
Commit ba46cebb authored by Fernando Erd's avatar Fernando Erd :ok_hand:
Browse files

Remove logs

parent 0fb62b65
No related branches found
No related tags found
1 merge request!116Release v1.0.0
Pipeline #
......@@ -149,7 +149,6 @@ pibpercapitaApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => {
log.debug(req.sql.toParam());
if (("city" in req.dims) || ("city" in req.filter)) {
console.log("PRIMEIRO");
req.sql.from('ibge_pib')
.field('ibge_pib.pib_per_capita', 'total')
.field('ibge_pib.ano_censo', 'year')
......@@ -157,7 +156,6 @@ pibpercapitaApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => {
.group('ibge_pib.pib_per_capita')
.order('ibge_pib.ano_censo')
} else {
console.log("SEGUNDO");
req.sql.from('ibge_pib')
.field('SUM(ibge_pib.pib)/SUM(ibge_pib.populacao)', 'total')
.field('ibge_pib.ano_censo', 'year')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment