export: log exported value
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
644713e3f9
commit
d22326b512
13
dagger/op.go
13
dagger/op.go
@ -202,6 +202,12 @@ func (op *Op) Export(ctx context.Context, fs FS, out Fillable) (FS, error) {
|
|||||||
}
|
}
|
||||||
switch format {
|
switch format {
|
||||||
case "string":
|
case "string":
|
||||||
|
log.
|
||||||
|
Ctx(ctx).
|
||||||
|
Debug().
|
||||||
|
Bytes("contents", contents).
|
||||||
|
Msg("exporting string")
|
||||||
|
|
||||||
if err := out.Fill(string(contents)); err != nil {
|
if err := out.Fill(string(contents)); err != nil {
|
||||||
return fs, err
|
return fs, err
|
||||||
}
|
}
|
||||||
@ -210,6 +216,13 @@ func (op *Op) Export(ctx context.Context, fs FS, out Fillable) (FS, error) {
|
|||||||
if err := json.Unmarshal(contents, &o); err != nil {
|
if err := json.Unmarshal(contents, &o); err != nil {
|
||||||
return fs, err
|
return fs, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log.
|
||||||
|
Ctx(ctx).
|
||||||
|
Debug().
|
||||||
|
Interface("contents", o).
|
||||||
|
Msg("exporting json")
|
||||||
|
|
||||||
if err := out.Fill(o); err != nil {
|
if err := out.Fill(o); err != nil {
|
||||||
return fs, err
|
return fs, err
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user