mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Handle GUI console when a null is received as format or argument.
This commit is contained in:
@@ -30,6 +30,7 @@
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// Copyright © 2011-2018 Natalia Portillo
|
// Copyright © 2011-2018 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using DiscImageChef.Console;
|
using DiscImageChef.Console;
|
||||||
@@ -78,6 +79,8 @@ namespace DiscImageChef.Gui
|
|||||||
|
|
||||||
static void OnWriteHandler(string format, params object[] arg)
|
static void OnWriteHandler(string format, params object[] arg)
|
||||||
{
|
{
|
||||||
|
if(format == null || arg == null) return;
|
||||||
|
|
||||||
Entries.Add(new LogEntry
|
Entries.Add(new LogEntry
|
||||||
{
|
{
|
||||||
Message = string.Format(format, arg),
|
Message = string.Format(format, arg),
|
||||||
@@ -89,6 +92,8 @@ namespace DiscImageChef.Gui
|
|||||||
|
|
||||||
static void OnErrorWriteHandler(string format, params object[] arg)
|
static void OnErrorWriteHandler(string format, params object[] arg)
|
||||||
{
|
{
|
||||||
|
if(format == null || arg == null) return;
|
||||||
|
|
||||||
Entries.Add(new LogEntry
|
Entries.Add(new LogEntry
|
||||||
{
|
{
|
||||||
Message = string.Format(format, arg),
|
Message = string.Format(format, arg),
|
||||||
@@ -100,6 +105,8 @@ namespace DiscImageChef.Gui
|
|||||||
|
|
||||||
static void OnVerboseWriteHandler(string format, params object[] arg)
|
static void OnVerboseWriteHandler(string format, params object[] arg)
|
||||||
{
|
{
|
||||||
|
if(format == null || arg == null) return;
|
||||||
|
|
||||||
Entries.Add(new LogEntry
|
Entries.Add(new LogEntry
|
||||||
{
|
{
|
||||||
Message = string.Format(format, arg),
|
Message = string.Format(format, arg),
|
||||||
@@ -111,6 +118,8 @@ namespace DiscImageChef.Gui
|
|||||||
|
|
||||||
static void OnDebugWriteHandler(string module, string format, params object[] arg)
|
static void OnDebugWriteHandler(string module, string format, params object[] arg)
|
||||||
{
|
{
|
||||||
|
if(format == null || arg == null) return;
|
||||||
|
|
||||||
Entries.Add(new LogEntry
|
Entries.Add(new LogEntry
|
||||||
{
|
{
|
||||||
Message = string.Format(format, arg),
|
Message = string.Format(format, arg),
|
||||||
|
|||||||
Reference in New Issue
Block a user