Add more logs

This commit is contained in:
Dave Gallant
2022-08-21 17:48:26 +00:00
parent afa440e765
commit 4fbc633978
3 changed files with 2 additions and 24 deletions

1
.dockerignore Normal file
View File

@@ -0,0 +1 @@
backend

View File

@@ -110,7 +110,7 @@ func (a *App) getDeals(id int, firstPage int, lastPage int) []Topic {
err = json.Unmarshal([]byte(body), &response) err = json.Unmarshal([]byte(body), &response)
if err != nil { if err != nil {
log.Warn().Msgf("could not unmarshal response body: %s\n", err) log.Warn().Msgf("could not unmarshal response body: %s\n %s", err)
} }
t = append(t, response.Topics...) t = append(t, response.Topics...)

View File

@@ -1,23 +0,0 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?