File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,16 +84,16 @@ protected function logToChannel(string $channel): void
84
84
protected function logToDisk (string $ disk ): void
85
85
{
86
86
if (Arr::get ($ this ->config , 'disk_separate_files ' )) {
87
- Storage::disk ($ disk )->put (
87
+ Storage::disk ($ disk )->append (
88
88
$ this ->getFileName ().'-request ' .Str::start ($ this ->fileExt , '. ' ),
89
89
$ this ->psrMessageStringConverter ->toString ($ this ->request , $ this ->getReplace ())
90
90
);
91
- Storage::disk ($ disk )->put (
91
+ Storage::disk ($ disk )->append (
92
92
$ this ->getFileName ().'-response ' .Str::start ($ this ->fileExt , '. ' ),
93
93
$ this ->psrMessageStringConverter ->toString ($ this ->response , $ this ->getReplace ())
94
94
);
95
95
} else {
96
- Storage::disk ($ disk )->put (
96
+ Storage::disk ($ disk )->append (
97
97
$ this ->getFileName ().Str::start ($ this ->fileExt , '. ' ),
98
98
$ this ->getMessage ()
99
99
);
You can’t perform that action at this time.
0 commit comments