-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglog.go
833 lines (698 loc) · 24.2 KB
/
glog.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
// Package log implements structured logging for Google App Engine, Cloud Run
// and Cloud Functions. The API is compatible with the standard library "log" module.
//
// All the severities conform to the Google Cloud Logging API v2 as described in
// https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#logseverity.
// These severity levels are: DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCY.
//
// The ERROR, CRITICAL, ALERT, EMERGENCY logs are written to the standard error stream, while
// the remaining logs are written to the standard output.
package log
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"strings"
"sync"
)
var std Logger
// ProjectID should be set to the Google Cloud project ID to properly correlate the message
// traces to HTTP requests, if you use ForRequest. The initial value is taken from the
// environment variable GOOGLE_CLOUD_PROJECT.
var ProjectID = os.Getenv("GOOGLE_CLOUD_PROJECT")
// Debug logs detailed information that could mainly be used to catch unforeseen problems.
// Arguments are handled in the manner of fmt.Print.
func Debug(v ...interface{}) {
std.Debug(v...)
}
// Debugln logs detailed information that could mainly be used to catch unforeseen problems.
// Arguments are handled in the manner of fmt.Println.
func Debugln(v ...interface{}) {
std.Debugln(v...)
}
// Debugf logs detailed information that could mainly be used to catch unforeseen problems.
// Arguments are handled in the manner of fmt.Printf.
func Debugf(format string, v ...interface{}) {
std.Debugf(format, v...)
}
// Debugj logs detailed information that could mainly be used to catch unforeseen problems.
// Argument v becomes jsonPayload field in the log entry.
func Debugj(msg string, v interface{}) {
std.Debugj(msg, v)
}
// Info logs routine information, such as ongoing status or performance.
// Arguments are handled in the manner of fmt.Print.
func Info(v ...interface{}) {
std.Info(v...)
}
// Infoln logs routine information, such as ongoing status or performance.
// Arguments are handled in the manner of fmt.Println.
func Infoln(v ...interface{}) {
std.Infoln(v...)
}
// Infof logs routine information, such as ongoing status or performance.
// Arguments are handled in the manner of fmt.Printf.
func Infof(format string, v ...interface{}) {
std.Infof(format, v...)
}
// Infoj logs routine information, such as ongoing status or performance.
// Argument v becomes the jsonPayload field of the log entry.
func Infoj(msg string, v interface{}) {
std.Infoj(msg, v)
}
// Notice logs normal but significant events, such as start up, shut down, or configuration.
// Arguments are handled in the manner of fmt.Print.
func Notice(v ...interface{}) {
std.Notice(v...)
}
// Noticeln logs normal but significant events, such as start up, shut down, or configuration.
// Arguments are handled in the manner of fmt.Println.
func Noticeln(v ...interface{}) {
std.Noticeln(v...)
}
// Noticef logs normal but significant events, such as start up, shut down, or configuration.
// Arguments are handled in the manner of fmt.Printf.
func Noticef(format string, v ...interface{}) {
std.Noticef(format, v...)
}
// Noticej logs normal but significant events, such as start up, shut down, or configuration.
// Argument v becomes the jsonPayload field of the log entry.
func Noticej(msg string, v interface{}) {
std.Noticej(msg, v)
}
// Warning logs events that might cause problems.
// Arguments are handled in the manner of fmt.Print.
func Warning(v ...interface{}) {
std.Warning(v...)
}
// Warningln logs events that might cause problems.
// Arguments are handled in the manner of fmt.Println.
func Warningln(v ...interface{}) {
std.Warningln(v...)
}
// Warningf logs events that might cause problems.
// Arguments are handled in the manner of fmt.Printf.
func Warningf(format string, v ...interface{}) {
std.Warningf(format, v...)
}
// Warningj logs events that might cause problems.
// Argument v becomes the jsonPayload field of the log entry.
func Warningj(msg string, v interface{}) {
std.Warningj(msg, v)
}
// Error logs events likely to cause problems.
// Arguments are handled in the manner of fmt.Print.
func Error(v ...interface{}) {
std.Error(v...)
}
// Errorln logs events likely to cause problems.
// Arguments are handled in the manner of fmt.Println.
func Errorln(v ...interface{}) {
std.Errorln(v...)
}
// Errorf logs events likely to cause problems.
// Arguments are handled in the manner of fmt.Printf.
func Errorf(format string, v ...interface{}) {
std.Errorf(format, v...)
}
// Errorj logs events likely to cause problems.
// Argument v becomes the jsonPayload field of the log entry.
func Errorj(msg string, v interface{}) {
std.Errorj(msg, v)
}
// Critical logs events that cause more severe problems or outages.
// Arguments are handled in the manner of fmt.Print.
func Critical(v ...interface{}) {
std.Critical(v...)
}
// Criticalln logs events that cause more severe problems or outages.
// Arguments are handled in the manner of fmt.Println.
func Criticalln(v ...interface{}) {
std.Criticalln(v...)
}
// Criticalf logs events that cause more severe problems or outages.
// Arguments are handled in the manner of fmt.Printf.
func Criticalf(format string, v ...interface{}) {
std.Criticalf(format, v...)
}
// Criticalj logs events that cause more severe problems or outages.
// Argument v becomes the jsonPayload field of the log entry.
func Criticalj(msg string, v interface{}) {
std.Criticalj(msg, v)
}
// Print logs routine information, such as ongoing status or performance, same as Info().
// Arguments are handled in the manner of fmt.Print.
func Print(v ...interface{}) {
std.Print(v...)
}
// Println logs routine information, such as ongoing status or performance, same as Infoln().
// Arguments are handled in the manner of fmt.Println.
func Println(v ...interface{}) {
std.Println(v...)
}
// Printf logs routine information, such as ongoing status or performance, same as Infof().
// Arguments are handled in the manner of fmt.Printf.
func Printf(format string, v ...interface{}) {
std.Printf(format, v...)
}
// Printj logs routine information, such as ongoing status or performance, same as Infoj().
// Argument v becomes the jsonPayload field of the log entry.
func Printj(msg string, v interface{}) {
std.Printj(msg, v)
}
// Fatal is equivalent to a call to Critical() followed by a call to os.Exit(1).
func Fatal(v ...interface{}) {
std.Fatal(v...)
}
// Fatalln is equivalent to a call to Criticalln() followed by a call to os.Exit(1).
func Fatalln(v ...interface{}) {
std.Fatalln(v...)
}
// Fatalf is equivalent to a call to Criticalf() followed by a call to os.Exit(1).
func Fatalf(format string, v ...interface{}) {
std.Fatalf(format, v...)
}
// Fatalj is equivalent to a call to Criticalj() followed by a call to os.Exit(1).
func Fatalj(msg string, v interface{}) {
std.Fatalj(msg, v)
}
// Panic is equivalent to a call to Critical() followed by a call to panic().
func Panic(v ...interface{}) {
std.Panic(v...)
}
// Panicln is equivalent to a call to Criticalln() followed by a call to panic().
func Panicln(v ...interface{}) {
std.Panicln(v...)
}
// Panicf is equivalent to a call to Criticalf() followed by a call to panic().
func Panicf(format string, v ...interface{}) {
std.Panicf(format, v...)
}
// Panicj is equivalent to a call to Criticalj() followed by a call to panic().
func Panicj(msg string, v interface{}) {
std.Panicj(msg, v)
}
// Alert logs when a person must take an action immediately.
// Arguments are handled in the manner of fmt.Print.
func Alert(v ...interface{}) {
std.Alert(v...)
}
// Alertln logs when a person must take an action immediately.
// Arguments are handled in the manner of fmt.Println.
func Alertln(v ...interface{}) {
std.Alertln(v...)
}
// Alertf logs when a person must take an action immediately.
// Arguments are handled in the manner of fmt.Printf.
func Alertf(format string, v ...interface{}) {
std.Alertf(format, v...)
}
// Alertj logs when a person must take an action immediately.
// Argument v becomes the jsonPayload field of the log entry.
func Alertj(msg string, v interface{}) {
std.Alertj(msg, v)
}
// Emergency logs when one or more systems are unusable.
// Arguments are handled in the manner of fmt.Print.
func Emergency(v ...interface{}) {
std.Emergency(v...)
}
// Emergencyln logs when one or more systems are unusable.
// Arguments are handled in the manner of fmt.Println.
func Emergencyln(v ...interface{}) {
std.Emergencyln(v...)
}
// Emergencyf logs when one or more systems are unusable.
// Arguments are handled in the manner of fmt.Printf.
func Emergencyf(format string, v ...interface{}) {
std.Emergencyf(format, v...)
}
// Emergencyj logs when one or more systems are unusable.
// Argument v becomes the jsonPayload field of the log entry.
func Emergencyj(msg string, v interface{}) {
std.Emergencyj(msg, v)
}
// Debug logs detailed information that could mainly be used to catch unforeseen problems.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Debug(v ...interface{}) {
log(debugsev, l, v...)
}
// Debugln logs detailed information that could mainly be used to catch unforeseen problems.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Debugln(v ...interface{}) {
logln(debugsev, l, v...)
}
// Debugf logs detailed information that could mainly be used to catch unforeseen problems.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Debugf(format string, v ...interface{}) {
logf(debugsev, l, format, v...)
}
// Debugj logs detailed information that could mainly be used to catch unforeseen problems.
// Argument v becomes jsonPayload field in the log entry.
func (l *Logger) Debugj(msg string, v interface{}) {
logj(debugsev, l, msg, v)
}
// Info logs routine information, such as ongoing status or performance.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Info(v ...interface{}) {
log(infosev, l, v...)
}
// Infoln logs routine information, such as ongoing status or performance.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Infoln(v ...interface{}) {
logln(infosev, l, v...)
}
// Infof logs routine information, such as ongoing status or performance.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Infof(format string, v ...interface{}) {
logf(infosev, l, format, v...)
}
// Infoj logs routine information, such as ongoing status or performance.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Infoj(msg string, v interface{}) {
logj(infosev, l, msg, v)
}
// Notice logs normal but significant events, such as start up, shut down, or configuration.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Notice(v ...interface{}) {
log(noticesev, l, v...)
}
// Noticeln logs normal but significant events, such as start up, shut down, or configuration.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Noticeln(v ...interface{}) {
logln(noticesev, l, v...)
}
// Noticef logs normal but significant events, such as start up, shut down, or configuration.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Noticef(format string, v ...interface{}) {
logf(noticesev, l, format, v...)
}
// Noticej logs normal but significant events, such as start up, shut down, or configuration.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Noticej(msg string, v interface{}) {
logj(noticesev, l, msg, v)
}
// Warning logs events that might cause problems.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Warning(v ...interface{}) {
log(warningsev, l, v...)
}
// Warningln logs events that might cause problems.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Warningln(v ...interface{}) {
logln(warningsev, l, v...)
}
// Warningf logs events that might cause problems.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Warningf(format string, v ...interface{}) {
logf(warningsev, l, format, v...)
}
// Warningj logs events that might cause problems.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Warningj(msg string, v interface{}) {
logj(warningsev, l, msg, v)
}
// Error logs events likely to cause problems.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Error(v ...interface{}) {
log(errorsev, l, v...)
}
// Errorln logs events likely to cause problems.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Errorln(v ...interface{}) {
logln(errorsev, l, v...)
}
// Errorf logs events likely to cause problems.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Errorf(format string, v ...interface{}) {
logf(errorsev, l, format, v...)
}
// Errorj logs events likely to cause problems.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Errorj(msg string, v interface{}) {
logj(errorsev, l, msg, v)
}
// Critical logs events that cause more severe problems or outages.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Critical(v ...interface{}) {
log(criticalsev, l, v...)
}
// Criticalln logs events that cause more severe problems or outages.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Criticalln(v ...interface{}) {
logln(criticalsev, l, v...)
}
// Criticalf logs events that cause more severe problems or outages.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Criticalf(format string, v ...interface{}) {
logf(criticalsev, l, format, v...)
}
// Criticalj logs events that cause more severe problems or outages.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Criticalj(msg string, v interface{}) {
logj(criticalsev, l, msg, v)
}
// Alert logs when a person must take an action immediately.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Alert(v ...interface{}) {
log(alertsev, l, v...)
}
// Alertln logs when a person must take an action immediately.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Alertln(v ...interface{}) {
logln(alertsev, l, v...)
}
// Alertf logs when a person must take an action immediately.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Alertf(format string, v ...interface{}) {
logf(alertsev, l, format, v...)
}
// Alertj logs when a person must take an action immediately.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Alertj(msg string, v interface{}) {
logj(alertsev, l, msg, v)
}
// Emergency logs when one or more systems are unusable.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Emergency(v ...interface{}) {
log(emergencysev, l, v...)
}
// Emergencyln logs when one or more systems are unusable.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Emergencyln(v ...interface{}) {
logln(emergencysev, l, v...)
}
// Emergencyf logs when one or more systems are unusable.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Emergencyf(format string, v ...interface{}) {
logf(emergencysev, l, format, v...)
}
// Emergencyj logs when one or more systems are unusable.
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Emergencyj(msg string, v interface{}) {
logj(emergencysev, l, msg, v)
}
// Print logs routine information, such as ongoing status or performance, same as l.Info().
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Print(v ...interface{}) {
log(infosev, l, v...)
}
// Println logs routine information, such as ongoing status or performance, same as l.Infoln().
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Println(v ...interface{}) {
logln(infosev, l, v...)
}
// Printf logs routine information, such as ongoing status or performance, same as l.Infof().
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Printf(format string, v ...interface{}) {
logf(infosev, l, format, v...)
}
// Printj logs routine information, such as ongoing status or performance, same as l.Infoj().
// Argument v becomes the jsonPayload field of the log entry.
func (l *Logger) Printj(msg string, v interface{}) {
logj(infosev, l, msg, v)
}
// Fatal is equivalent to a call to l.Critical() followed by a call to os.Exit(1).
func (l *Logger) Fatal(v ...interface{}) {
log(criticalsev, l, v...)
os.Exit(1)
}
// Fatalln is equivalent to a call to l.Criticalln() followed by a call to os.Exit(1).
func (l *Logger) Fatalln(v ...interface{}) {
logln(criticalsev, l, v...)
os.Exit(1)
}
// Fatalf is equivalent to a call to l.Criticalf() followed by a call to os.Exit(1).
func (l *Logger) Fatalf(format string, v ...interface{}) {
logf(criticalsev, l, format, v...)
os.Exit(1)
}
// Fatalj is equivalent to a call to l.Criticalj() followed by a call to os.Exit(1).
func (l *Logger) Fatalj(msg string, v interface{}) {
logj(criticalsev, l, msg, v)
os.Exit(1)
}
// Panic is equivalent to a call to l.Critical() followed by a call to panic().
func (l *Logger) Panic(v ...interface{}) {
panic(log(criticalsev, l, v...))
}
// Panicln is equivalent to a call to l.Criticalln() followed by a call to panic().
func (l *Logger) Panicln(v ...interface{}) {
panic(logln(criticalsev, l, v...))
}
// Panicf is equivalent to a call to l.Criticalf() followed by a call to panic().
func (l *Logger) Panicf(format string, v ...interface{}) {
panic(logf(criticalsev, l, format, v...))
}
// Panicj is equivalent to a call to l.Criticalj() followed by a call to panic().
func (l *Logger) Panicj(msg string, v interface{}) {
logj(criticalsev, l, msg, v)
panic(v)
}
type Logger struct {
out io.Writer
err io.Writer
mu sync.Mutex
trace json.RawMessage
}
// ForRequest creates a new Logger. All the messages logged through it will trace
// back to the HTTP request, based on its header "X-Cloud-Trace-Context" combined
// with the package var ProjectID.
//
// Setting package var ProjectID to empty disables such tracing altogether.
func ForRequest(request *http.Request) *Logger {
l := &Logger{}
if ProjectID != "" {
h := request.Header.Get("X-Cloud-Trace-Context")
// "X-Cloud-Trace-Context: TRACE_ID/SPAN_ID;o=TRACE_TRUE" meaning:
// TRACE_ID is a 32-character hexadecimal value representing a 128-bit number. [Future-proofing to 256-char.]
// SPAN_ID is the decimal representation of [unsigned integer of unspecified bitlength].
// TRACE_TRUE must be `1` to trace this request. Specify `0` to not trace the request.
if i := strings.IndexByte(h, '/'); i > 0 && i <= 256 {
if strings.Contains(h[i:], ";o=0") {
return l
}
t := h[:i]
if strings.TrimLeft(t, "0123456789abcdefABCDEFxX") != "" {
return l
}
if strings.Count(t, "0") != len(t) {
b, err := marshalJSON(fmt.Sprintf("projects/%s/traces/%s", ProjectID, t))
if err != nil {
return l
}
l.trace = b
}
}
}
return l
}
// New is for interface-level compatibility with standard library's
// "log" package. It creates a new Logger, which streams all its messages to w.
// Remaining arguments are ignored.
//
// The ForRequest() constructor is more useful.
func New(w io.Writer, dummy2 string, dummy3 int) *Logger {
return &Logger{
out: w,
err: w,
}
}
func (l *Logger) writer(s severity) io.Writer {
if s.IsErrorish() {
if l.err != nil {
return l.err
}
return os.Stderr
}
if l.out != nil {
return l.out
}
return os.Stdout
}
type severity int32
const (
debugsev severity = iota * 100
infosev
noticesev
warningsev
errorsev
criticalsev
alertsev
emergencysev
)
func (s severity) MarshalJSON() ([]byte, error) {
switch s {
default:
return []byte(`"UNKNOWN"`), fmt.Errorf("unknown severity: %d", s)
case debugsev:
return []byte(`"DEBUG"`), nil
case infosev:
return []byte(`"INFO"`), nil
case noticesev:
return []byte(`"NOTICE"`), nil
case warningsev:
return []byte(`"WARNING"`), nil
case errorsev:
return []byte(`"ERROR"`), nil
case criticalsev:
return []byte(`"CRITICAL"`), nil
case alertsev:
return []byte(`"ALERT"`), nil
case emergencysev:
return []byte(`"EMERGENCY"`), nil
}
}
// IsErrorish returns true for severity ERROR and above it.
func (s severity) IsErrorish() bool {
return s >= errorsev
}
func log(s severity, l *Logger, v ...interface{}) string {
return logs(s, l, fmt.Sprint(v...))
}
func logln(s severity, l *Logger, v ...interface{}) string {
return logs(s, l, fmt.Sprintln(v...))
}
func logf(s severity, l *Logger, format string, v ...interface{}) string {
return logs(s, l, fmt.Sprintf(format, v...))
}
type entry struct {
Message string `json:"message"`
Severity severity `json:"severity,omitempty"`
Trace json.RawMessage `json:"logging.googleapis.com/trace,omitempty"`
}
func logs(s severity, l *Logger, msg string) string {
entry := entry{msg, s, l.trace}
encoder := json.NewEncoder(l.writer(s))
encoder.SetEscapeHTML(false)
l.mu.Lock()
defer l.mu.Unlock()
_ = encoder.Encode(entry)
return msg
}
func logj(s severity, l *Logger, msg string, item interface{}) {
// Would be nice to check for duplicated fields, e.g. "message", if a user throws at us a map which they don't
// bother to sanitize.
//
// This code would be a dead end, as it doesn't catch map[string]string:
// switch v := j.(type) {
// case map[string]interface{}:
// if _, ok := v["message"]; ok {
// }
// }
//
// It could maybe use reflect to catch things like map[string]string, but it'd be slow and hard to do exhaustively.
buf, err := marshalJSON(item)
if err != nil {
// Do not include the err: do not risk infinite loop when err itself has a custom marshaler that returns
// the same error.
logRawJSON(s, l, msg, []byte(`{"logLibMsg":"cannot marshal the argument as jsonPayload"}`))
return
}
logRawJSON(s, l, msg, buf)
}
// marshalJSON is exactly like json.Marshal except it uses option SetEscapeHTML(false)
// in order to not to mange the output and that it pre-allocates the buffer at 1024 bytes.
func marshalJSON(in interface{}) ([]byte, error) {
buf := bytes.NewBuffer(make([]byte, 0, 1024))
encoder := json.NewEncoder(buf)
encoder.SetEscapeHTML(false)
err := encoder.Encode(in)
if err != nil {
return nil, err
}
// Remove the final new line.
res := bytes.TrimRight(buf.Bytes(), "\n")
return res, err
}
// logRawJSON writes the buf to the l logger. The buf should be
// an encoded JSON and its first byte must be '{'.
// The s and msg are brutally inserted as "severity" and "message" top-level JSON fields.
// The buf should not contain "severity", "message", or "logging.googleapis.com/trace"
// top-level JSON fields.
// No attempt is made to check whether the resulting string does not have these fields
// duplicated and whether it is a valid JSON. Spoiler alert: GCP Logging API seems to be
// quite gracefully handling malformed JSON entries with such duplicate fields.
func logRawJSON(s severity, l *Logger, msg string, buf []byte) {
var msgj, sevj []byte
var err error
if msg != "" {
msgj, err = marshalJSON(msg)
if err != nil {
return
}
}
w := l.writer(s)
jsonStruct := len(buf) > 0 && buf[0] == '{'
if jsonStruct {
buf = buf[1:]
}
// Critical Section
l.mu.Lock()
defer l.mu.Unlock()
if _, err := w.Write([]byte("{")); err != nil {
return
}
comma := []byte{}
if msg != "" {
if _, err := w.Write([]byte("\"message\":")); err != nil {
return
}
if _, err := w.Write(msgj); err != nil {
return
}
comma = []byte(",")
}
sevj, err = s.MarshalJSON()
if err == nil {
if _, err := w.Write(comma); err != nil {
return
}
if _, err := w.Write([]byte("\"severity\":")); err != nil {
return
}
if _, err := w.Write(sevj); err != nil {
return
}
comma = []byte(",")
}
if len(l.trace) != 0 {
if _, err := w.Write(comma); err != nil {
return
}
if _, err := w.Write([]byte("\"logging.googleapis.com/trace\":")); err != nil {
return
}
if _, err := w.Write(l.trace); err != nil {
return
}
comma = []byte(",")
}
if !jsonStruct {
if _, err := w.Write(comma); err != nil {
return
}
if _, err := w.Write([]byte("\"value\":")); err != nil {
return
}
if _, err := w.Write(buf); err != nil {
return
}
_, _ = w.Write([]byte("}\n"))
return
}
if len(buf) > 0 && buf[0] != '}' {
if _, err := w.Write(comma); err != nil {
return
}
}
if _, err := w.Write(buf); err != nil {
return
}
if buf[len(buf)-1] != '\n' {
_, _ = w.Write([]byte("\n"))
}
}