Modified the VB class example to module, here is the begining of the code, I'm trying to make a console app:
Module Module1
Sub Main(ByVal args() As String)
If args.Length <> 3 Then
Usage()
System.Environment.Exit(1)
End If
Dim log As Logger = Logger.GetLogger(GetType(Module1))
Dim host As String = args(0)
Dim user As String = args(1)
Dim password As String = args(2)
Logger.CurrentLevel = Level.ALL
Dim ftp As FTPClient = Nothing
and I get this message:
WARNING: 'edtftp.log.level' not found or invalid - logging switched off
I'm new to Visual Basic and to edtFTPnet.
Thanks,