-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor changes in user-settings, still some errors in removing parts * Added custom setting to add custom speeds for playback and implemented these into video player * Full rewrite of the logging in the api folder * Fixed a bug in statistics.go * Changed logging in dao and tumlive * Finished rewriting logs everywhere but in the worker * Minor changes in user-settings, still some errors in removing parts * Added custom setting to add custom speeds for playback and implemented these into video player * Full rewrite of the logging in the api folder * Fixed a bug in statistics.go * Changed logging in dao and tumlive * Finished rewriting logs everywhere but in the worker * Added json logging to dao and in email.go, go upgraded to 1.21, added slogGorm package * Merged locally * Changed Dockerfile to work with multiple files in cmd/tumlive * Fixed a bug * Fixed a bug * Fixed some version things * Fixed build errors * Fixed bug in worker * Fixed another bug * Testing another change in go.work * Updated go.sum * Fixed go.work * Updated to go 1.21.5 * Removed autobuild * Added correct make targets to build * Fixed some more bugs * Changed everything to 1.21 instead of 1.21.5 * Removed toolchain directive * Added toolchain directive with new version * Last try with toolchain directive * Fixed pipeline
- Loading branch information
Showing
78 changed files
with
693 additions
and
502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package api | ||
|
||
import ( | ||
"log/slog" | ||
"os" | ||
) | ||
|
||
var logger = slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{ | ||
Level: slog.LevelDebug, | ||
})).With("service", "api") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.