Browse Source

Print out a log message saying what image is being copied where

pull/753/head
Gabe Kangas 4 years ago
parent
commit
b47589fa8f
  1. 6
      core/data/migrator.go

6
core/data/migrator.go

@ -118,9 +118,11 @@ func migrateConfigFile() { @@ -118,9 +118,11 @@ func migrateConfigFile() {
// Migrate logo
if logo := oldConfig.InstanceDetails.Logo; logo != "" {
filename := filepath.Base(logo)
oldPath := filepath.Join("webroot", logo)
newPath := filepath.Join("data", filename)
err := utils.Copy(filepath.Join("webroot", logo), newPath)
log.Traceln("Copying logo from", logo, "to", newPath)
log.Infoln("Copying logo from", oldPath, "to", newPath)
err := utils.Copy(oldPath, newPath)
if err != nil {
log.Errorln("Error moving logo", logo, err)
} else {

Loading…
Cancel
Save