소스 검색

Add logging

Simply log search params to response code.
master
부모
커밋
593106c791
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      index.js

+ 2
- 0
index.js 파일 보기

@@ -20,6 +20,7 @@ const server = http.createServer(async (req, res) => {
const badgeUrl = await getBadgeUrl(searchParams)

if (badgeUrl === null) {
console.log(JSON.stringify(searchParams), 404)
res.writeHead(404, {})
res.write('No badge available.')
res.end()
@@ -33,6 +34,7 @@ const server = http.createServer(async (req, res) => {
})
res.writeHead(200, { 'content-type': 'image/svg+xml', })
response.data.on('finish', () => {
console.log(JSON.stringify(searchParams), 200)
res.end()
})
response.data.pipe(res)


불러오는 중...
취소
저장