mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 06:00:23 +00:00
Additional debugging for proxy setup.
This commit is contained in:
parent
cde56ae735
commit
d4485d08a7
1 changed files with 9 additions and 2 deletions
|
@ -16,6 +16,7 @@ namespace Roadie.Library.Imaging
|
||||||
private Image _track;
|
private Image _track;
|
||||||
private Image _user;
|
private Image _user;
|
||||||
|
|
||||||
|
private ILogger Logger { get; }
|
||||||
|
|
||||||
public Image Artist
|
public Image Artist
|
||||||
{
|
{
|
||||||
|
@ -76,9 +77,10 @@ namespace Roadie.Library.Imaging
|
||||||
|
|
||||||
private IRoadieSettings Configuration { get; }
|
private IRoadieSettings Configuration { get; }
|
||||||
|
|
||||||
public DefaultNotFoundImages(IRoadieSettings configuration)
|
public DefaultNotFoundImages(ILogger<DefaultNotFoundImages> logger, IRoadieSettings configuration)
|
||||||
{
|
{
|
||||||
this.Configuration = configuration;
|
this.Configuration = configuration;
|
||||||
|
this.Logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Image MakeImageFromFile(string filename)
|
private static Image MakeImageFromFile(string filename)
|
||||||
|
@ -102,7 +104,12 @@ namespace Roadie.Library.Imaging
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return Path.Combine(this.Configuration.ContentPath, filename);
|
var path= Path.Combine(this.Configuration.ContentPath, filename);
|
||||||
|
if(!File.Exists(path))
|
||||||
|
{
|
||||||
|
this.Logger.LogWarning("Unable To Find Path [{0}], ContentPath [{1}]", path, this.Configuration.ContentPath);
|
||||||
|
}
|
||||||
|
return path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue