|
@@ -11,6 +11,7 @@ use Illuminate\Support\Facades\DB;
|
|
|
use Illuminate\Support\Facades\Request;
|
|
|
use Illuminate\Support\Facades\View;
|
|
|
use Alipay\EasySDK\Kernel\Config;
|
|
|
+use Illuminate\Support\Facades\Log;
|
|
|
|
|
|
class HttpBaseController extends BaseController
|
|
|
{
|
|
@@ -98,7 +99,7 @@ class HttpBaseController extends BaseController
|
|
|
$options->signType = 'RSA2';
|
|
|
|
|
|
$options->appId = $configArr['app_id'];
|
|
|
-
|
|
|
+ Log::info('----------------------' . $configArr['private_key']);
|
|
|
// 为避免私钥随源码泄露,推荐从文件中读取私钥字符串而不是写入源码中
|
|
|
$options->merchantPrivateKey = $configArr['private_key'];
|
|
|
|