我有一个使用laravel作为服务器端的Web构建,并带有rest api。 某些用户将访问我的restapi
如果客户端尝试将数据连接/发布到我的api,我想从服务器端显示调试
有人可以向我解释吗?还是我可以遵循的教程?
答案 0 :(得分:0)
您可以使用以下任何一种方法。
<ItemsControl x:Name="itemsControl">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" >
<TextBlock Text="Test 1"/>
<TextBlock>
<Run Text=" ### "/>
</TextBlock>
<TextBlock Text="Test 2"/>
</StackPanel>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
它将把日志存储在您的日志文件中。最好设置Log::emergency("Your message");
Log::alert("Your message");
Log::critical("Your message");
Log::error("Your message");
Log::warning("Your message");
Log::notice("Your message");
Log::info("Your message");
Log::debug("Your message");
。如果您的频道比较宽松,则可以在该频道中获取日志通知。
要了解有关日志记录的更多信息,请阅读此官方文档。 https://laravel.com/docs/5.8/logging
答案 1 :(得分:0)