Bugzilla – Attachment 145933 Details for
Bug 28672
Improve EDI debug logging
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28672: (QA follow-up) Method calls cannot be interpolated directly
Bug-28672-QA-follow-up-Method-calls-cannot-be-inte.patch (text/plain), 990 bytes, created by
Kyle M Hall (khall)
on 2023-02-01 11:56:05 UTC
(
hide
)
Description:
Bug 28672: (QA follow-up) Method calls cannot be interpolated directly
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2023-02-01 11:56:05 UTC
Size:
990 bytes
patch
obsolete
>From 9fb360dd7131eaa4970a23094a7174eaad872622 Mon Sep 17 00:00:00 2001 >From: Kyle Hall <kyle@bywatersolutions.com> >Date: Wed, 1 Feb 2023 06:52:01 -0500 >Subject: [PATCH] Bug 28672: (QA follow-up) Method calls cannot be interpolated > directly > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > Koha/EDI.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/EDI.pm b/Koha/EDI.pm >index dd9bc94430d..ceb9a2ccd41 100644 >--- a/Koha/EDI.pm >+++ b/Koha/EDI.pm >@@ -563,10 +563,10 @@ sub transfer_items { > $ilink->update; > --$quantity; > --$mapped_by_branch{$i_branch}; >- $logger->warn("Transferred item $item->itemnumber"); >+ $logger->warn("Transferred item " . $item->itemnumber); > } > else { >- $logger->warn("Skipped item $item->itemnumber"); >+ $logger->warn("Skipped item " . $item->itemnumber); > } > if ( $quantity < 1 ) { > last; >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 28672
:
122648
|
145931
|
145932
| 145933