Commit c568bd2e34ac8eff0c951425fdd62062f8817378
1 parent
5fd9a09a
Exists in
master
and in
1 other branch
Minor fix in support of callback
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
server.js
... | ... | @@ -98,8 +98,8 @@ app.post('/api', function(req, res){ |
98 | 98 | break; |
99 | 99 | |
100 | 100 | case 'video': |
101 | - console.log('Query: \n'req.query); | |
102 | - console.log('Params: \n'req.params); | |
101 | + console.log('Query: \n' + req.query); | |
102 | + console.log('Params: \n' + req.params); | |
103 | 103 | /* Verifica se os paramêtros [posicao, tamanho, transparencia] possuem algum valor */ |
104 | 104 | if ((req.query.posicao !== '') && (req.query.tamanho !== '') && (req.query.transparencia !== '')) { |
105 | 105 | /* Verifica se os paramêtros [linguagem, posicao, tamanho, transparencia] possuem os seus únicos valores possíveis */ | ... | ... |