]> git.uzoombox.com Git - uzsdk.git/commitdiff
feat(components): 1, add method IOWriter to return io writer for Logger.
authorbruce <bruce@nanzoom.com>
Thu, 25 Apr 2024 13:48:14 +0000 (13:48 +0000)
committerbruce <bruce@nanzoom.com>
Mon, 4 Nov 2024 03:21:35 +0000 (03:21 +0000)
  2, return string key directly if key's value not found in translations.

.gitignore
uzsdk/logger/logger.go
uzsdk/translations/translation.go
version.go

index a08cd0dc3b1ce4062c3b0da7efca2939dcbdd06c..dbd8e5ace96df5370a8ba448237ecfe625f339ea 100644 (file)
@@ -5,5 +5,4 @@
 *.exe
 *.zip
 *.har
-*.swp
-.git.*/
\ No newline at end of file
+*.swp
\ No newline at end of file
index f9748823cf1a62c145ee78ba6d7a5cd2b22d1cff..30cd55a0fdc41ec4db85898a8574e0c86449620f 100644 (file)
@@ -78,6 +78,10 @@ func New(path, logv, prefix string, options ...interface{}) *Logger {
        }
 }
 
+func (l *Logger) IOWriter() *os.File {
+       return l.out
+}
+
 // Fatal calls output(Fatal, Sprint(v)) to print the log.
 func (l *Logger) Fatal(v ...interface{}) {
        l.Output(Fatal, "FATAL", fmt.Sprint(v...))
index 6dd903c4145d06528bf1c021ed91aec432868d0e..ac5ed93f1da9643ed6de0f59398cece291814481 100644 (file)
@@ -23,5 +23,5 @@ func Translate(language *string, key string) string {
                        return value
                }
        }
-       return ""
+       return key
 }
index 42b77fda1129e02ee542e895ade73a32ffbc9d06..602740c532329e580aac5e01b5c08437253cfd41 100644 (file)
@@ -66,4 +66,4 @@ require (
 package uzsdk
 
 // Version is the current opensdk's version.
-const Version = "1.0.0"
+const Version = "0.2.4"