Debugging nodeport
This commit is contained in:
parent
5a7608460b
commit
ca350604e3
|
@ -222,7 +222,7 @@ namespace KubernetesWorkflow
|
||||||
}
|
}
|
||||||
catch (k8s.Autorest.HttpOperationException ex)
|
catch (k8s.Autorest.HttpOperationException ex)
|
||||||
{
|
{
|
||||||
log.Error(JsonConvert.SerializeObject(ex));
|
log.Error(JsonConvert.SerializeObject(ex.Response));
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -238,7 +238,7 @@ namespace KubernetesWorkflow
|
||||||
}
|
}
|
||||||
catch (k8s.Autorest.HttpOperationException ex)
|
catch (k8s.Autorest.HttpOperationException ex)
|
||||||
{
|
{
|
||||||
log.Error(JsonConvert.SerializeObject(ex));
|
log.Error(JsonConvert.SerializeObject(ex.Response));
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,9 @@ namespace Logging
|
||||||
|
|
||||||
public virtual void Error(string message)
|
public virtual void Error(string message)
|
||||||
{
|
{
|
||||||
Log($"[ERROR] {message}");
|
var msg = $"[ERROR] {message}";
|
||||||
|
Console.WriteLine(msg);
|
||||||
|
Log(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual void AddStringReplace(string from, string to)
|
public virtual void AddStringReplace(string from, string to)
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
public override void Error(string message)
|
public override void Error(string message)
|
||||||
{
|
{
|
||||||
|
Console.WriteLine("Error: " + message);
|
||||||
base.Error(message);
|
base.Error(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue